如何搜索下载的网站字符串?

时间:2013-04-16 19:11:09

标签: c#

我已经下载了字符串并找到了索引但是无法获取我正在搜索的文本。这是我的代码:

System.Net.WebClient client = new System.Net.WebClient();
string downloadedString = client.DownloadString("http://www.gmail.com");
int ss = downloadedString.IndexOf("fun");
string mm = downloadedString.Substring(ss);
textBox1.Text = mm;

2 个答案:

答案 0 :(得分:0)

尝试以下

 if (downloadedString .Contains("fun"))
    {
        // Process...
    }

答案 1 :(得分:0)

访问www.gmail.com将执行3个指示。请尝试使用以下网址:

  

https://accounts.google.com/ServiceLogin?service=mail&passive=true&rm=false&continue=https://mail.google.com/mail/&ss=1&scc=1&ltmpl=default&ltmplcache=2

另外,请考虑使用适当的HTML解析器,例如HTML Agility Pack