C#简单爬虫案例分享

C#简单爬虫案例分享,第1张

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

本文实例为大家分享了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();      }  }}

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

总结

以上是内存溢出为你收集整理的C#简单爬虫案例分享全部内容,希望文章能够帮你解决C#简单爬虫案例分享所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1253853.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存