HtmlAgilityPack是CodePlex上的一个开源项目。它提供了标准的DOMAPI和XPath导航--即使HTML不是适当的格式!
示例代码:
HtmlDocumentdoc=newHtmlDocument();doc.Load("file.htm");foreach(HtmlNodelinkindoc.DocumentElement.SelectNodes("//a[@href"]){HtmlAttributeatt=link["href"];att.Value=FixLink(att);}doc.Save("file.htm");
评论