具有 HtmlAgilityPack 样式属性的元素数
number of elements which have style attribute with HtmlAgilityPack
我正在使用 HtmlAgilityPack 来解析 HTML。我想获得具有内联样式的元素的数量。
类似于:
HtmlDocument.DocumentNode.SelectNodes("//*[has('@style')]").count
你可以使用
doc.DocumentNode.SelectNodes("//*[@style]").Count
您不需要为给定的属性指定值。
我正在使用 HtmlAgilityPack 来解析 HTML。我想获得具有内联样式的元素的数量。
类似于:
HtmlDocument.DocumentNode.SelectNodes("//*[has('@style')]").count
你可以使用
doc.DocumentNode.SelectNodes("//*[@style]").Count
您不需要为给定的属性指定值。