[C#] 纯文本查看 复制代码 public void s()
{
int x = 0;
WebClient MyWebClient1 = new WebClient();
MyWebClient1.Credentials = CredentialCache.DefaultCredentials;//获取或设置用于向Internet资源的请求进行身份验证的网络凭据
//通过HttpWebResponse拿到文章的链接,通过pageData1进入文章的链接
for (int i = 0; i < 50;i++ )
{
Byte[] pageData1 = MyWebClient1.DownloadData(webBrowser1.Url + "&pn=" + i + "0");
string html11 = string.Empty;
string pageHtml1 = Encoding.UTF8.GetString(pageData1);//如果获取网站页面采用的是UTF-8,则使用这句
MatchCollection matcholls = Regex.Matches(pageHtml1, "(?<=<h3 class=\"c-title\"><a href=\").*?(?=\")");
string context1 = "";
foreach (Match m in matcholls)
{
context1 += m.Groups[0].Value.Trim() + "\r\n";
}
List<string> lsit=new List<string>();
lsit.Add(context1);
这个是我的代码 我是新手 麻烦大神们教下我这么去list<string>里面的数据 |