欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#简单爬虫案例分享

程序员文章站 2024-02-11 08:27:40
本文实例为大家分享了c#简单爬虫案例,供大家参考,具体内容如下 using system; using system.collections.generic;...

本文实例为大家分享了c#简单爬虫案例,供大家参考,具体内容如下

using system;
using system.collections.generic;
using system.linq;
using system.net;
using system.text;
using system.text.regularexpressions;
using system.threading.tasks;

namespace consoleapplication1
{
  class program
  {
    static void main(string[] args)
    {

      webclient wc = new webclient();
      wc.encoding = encoding.utf8;
      string html = wc.downloadstring("http://www.lagou.com/");

      matchcollection matches = regex.matches(html, "<a.*jobs.*>(.*)</a>");
      foreach (match item in matches)
      {
        console.writeline(item.groups[1].value);
      }
      console.writeline(matches.count);
      console.readkey();  
    }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。