标签: asp.net vb.net html-agility-pack
我使用HtmlAgilityPack来解析HTML。我想获得具有内联样式的元素数量。
类似的东西:
HtmlDocument.DocumentNode.SelectNodes("//*[has('@style')]").count
答案 0 :(得分:1)
您可以使用
doc.DocumentNode.SelectNodes("//*[@style]").Count
您无需为给定属性指定值。