首页 > 其他 > 详细

c#正则表达式采集数据

时间:2014-08-12 18:06:54      阅读:407      评论:0      收藏:0      [点我收藏+]

 protected void Page_Load(object sender, EventArgs e)

  StringBuilder MyStringBuilder = new StringBuilder(); 

     WebRequest request = WebRequest.Create("http://www.dahuatech.com/news.aspx?type=1002");

     WebResponse response = request.GetResponse();

     StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding("utf-8"));

  MatchCollection TitleMatchs = Regex.Matches(reader.ReadToEnd(), @"<img src=""images/5_02.jpg"" width=""2"" height=""3"">[\s]*<a href=""newsinfo.aspx[?]id=[\d]*&&type=1002"">([\s\S]*?)</a>", RegexOptions.IgnoreCase | RegexOptions.Multiline);

  foreach (Match NextMatch in TitleMatchs)           

  {

    //s += "<br>" + NextMatch.Groups[1].Value + NextMatch.Groups[2].Value;

    // tb1.Text += "\n" + NextMatch.Groups[1].Value+"\n" + NextMatch.Groups[2].Value;

    tb1.Text +=  NextMatch.Groups[1].Value.Trim()+"\n";            

  }

 

 }

c#正则表达式采集数据,布布扣,bubuko.com

c#正则表达式采集数据

原文:http://www.cnblogs.com/print/p/3907516.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!