码迷,mamicode.com
首页 > Windows程序 > 详细

C#简单爬虫案例

时间:2017-10-10 11:34:03      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:.text   key   http   pre   client   blog   str   encoding   count   

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#简单爬虫案例

标签:.text   key   http   pre   client   blog   str   encoding   count   

原文地址:http://www.cnblogs.com/xiaz/p/7644238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!