具有HtmlAgilityPack样式属性的元素数

时间:2015-02-10 21:28:32

标签: asp.net vb.net html-agility-pack

我使用HtmlAgilityPack来解析HTML。我想获得具有内联样式的元素数量。

类似的东西:

HtmlDocument.DocumentNode.SelectNodes("//*[has('@style')]").count

1 个答案:

答案 0 :(得分:1)

您可以使用

doc.DocumentNode.SelectNodes("//*[@style]").Count

您无需为给定属性指定值。