步步为营-19-正则表达式的简单应用
生活随笔
收集整理的這篇文章主要介紹了
步步为营-19-正则表达式的简单应用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
說明:現在我想查看博客園中,我都寫了哪些隨筆,都是什么時間寫的.做一個數據的采集分析
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks;namespace 博客園統計 {class Program{static void Main(string[] args){WebClient web = new WebClient();byte[] buffer = web.DownloadData(@"http://www.cnblogs.com/YK2012/");string html = Encoding.UTF8.GetString(buffer);MatchCollection mc = Regex.Matches(html, @"<a.+?homepage1.+?DayList.+?html.+?>(?<title>.+)</a>");MatchCollection name = Regex.Matches(html,@"@\s(?<time>.+)逍遙小天狼");Console.WriteLine("一共有{0}篇文章",mc.Count);for (int i = 0; i < mc.Count; i++){if (mc.Count>0 && name.Count>0){Console.WriteLine(mc[i].Groups["title"]);Console.WriteLine(name[i].Groups["time"]);}}Console.Read();}} } View Code?
轉載于:https://www.cnblogs.com/YK2012/p/6722402.html
總結
以上是生活随笔為你收集整理的步步为营-19-正则表达式的简单应用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [bzoj4236]JOIOJI
- 下一篇: 类库 通用变量 is和as 委托