您好,我正在尝试为 windows phone 创建一个小 webapp。它拉下一个网页并将源代码保存在一个文本块中,我想要做的是让应用程序读取该文本块并确定其中是否包含一个设置值 =“ http://test.com ”如果它确实我想要它提取完整的网址。
到目前为止我所拥有的是
string stringToCheck = "http://test.com";
string stringhtml = invisiBlockHtml.Text;
if (stringhtml.Contains(stringToCheck))
{
// StreamReader sr = new StreamReader(stringhtml);
// here i was hoping there was some way for StreamReader or another function to read the string and then pull out the full url
webBrowser1.Navigate(new Uri("found Url", UriKind.Absolute)); }
else
{
webBrowser1.Navigate(new Uri("http://dontcontain.com", UriKind.Absolute));
}`
希望这是有道理的,我最近才开始编程。谢谢