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

C#通过 Html Agility Pack(HAP)解析html源码

时间:2019-04-11 16:20:30      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:提取   cli   网页   nod   通过   href   解析   dos   something   

将内容过程中经常用到的一些内容片段做个收藏,如下的资料是关于C#通过 Html Agility Pack(HAP)解析html的内容,应该对各位朋友有一些用处。

HtmlWeb webClient = new HtmlWeb();

if (hrefList != null)
{
foreach (HtmlNode href in hrefList)
{
HtmlAttribute att = href.Attributes["href"];
doSomething(att.Value);

 }

}

以上代码示例load进来一个网页,提取所有的link(就是<ahref=...></a>),遍历时提取出link的内容(href.Attributes["href"].Value)然后doSomething().

C#通过 Html Agility Pack(HAP)解析html源码

标签:提取   cli   网页   nod   通过   href   解析   dos   something   

原文地址:https://blog.51cto.com/14135053/2377256

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