首页 > 代码库 > 解析网页源码方式

解析网页源码方式

 

解析政策源码

1,正则获取:

Regex regex = new Regex(strPattern, RegexOptions.IgnoreCase | RegexOptions.Multiline);        if (regex.IsMatch(htmlContent))        {            MatchCollection matchCollection = regex.Matches(htmlContent);            foreach (Match match in matchCollection)            {                         string value = http://www.mamicode.com/match.Value;//获取到的            }        }

2,HtmlAgilityPack 之 HtmlNode类 (主要是XPath语法解析,firebug插件可以查看对应XPath)

3,Newtonsoft.Json序列化和反序列

这里下载:http://www.newtonsoft.com/products/json/ 
 

 

解析网页源码方式