1

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

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;
4

2 回答 2

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<mpl=default<mplcache=2

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

于 2013-04-16T20:33:47.683 回答
0

尝试以下

 if (downloadedString .Contains("fun"))
    {
        // Process...
    }
于 2013-04-16T19:12:54.520 回答