こんにちは、Windows Phone 用の小さな Web アプリケーションを作成しようとしています。それはウェブページをプルダウンし、ソースコードをテキストブロックに保存します。私がやりたいのは、アプリにそのテキストブロックを読み取らせ、設定値が含まれているかどうかを判断することです = " http://test.com " 必要な場合完全な URL を抽出します。
これまでのところ、私が持っているのは
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));
}`
これが理にかなっていることを願っています。私はごく最近プログラミングを始めたばかりです。ありがとう