0

我是 C# 的新手。我正在 HtmlAgilityPack 中寻找类似的功能。在名为 BeautifulSoup 的 Python 解析库中存在名为contents的函数。我如何通过 HtmlAgility 做到这一点?

4

1 回答 1

0

好的,所以首先获取包含所有内容的文档根目录

//create a new document
var _htmlDoc = new  HtmlAgilityPack.HtmlDocument();

//fill it with html
_htmlDoc.Load(filePath) or _htmlDoc.LoadHtml(string...)

//get the document root node - it has all the contents
var docuemntNode = _htmlDoc.DocumentNode;

然后...使用 linq 或 xpath 查询节点

string xpathExpressionSting = "//p";
var contents = htmlDoc.DocumentNode.SelectNodes(xpathExpressionSting)
//this would get paragraph tag nodes
于 2013-03-23T23:56:51.893 回答