防止 HtmlAgilityPack select 特定 class
Prevent HtmlAgilityPack to select particular class
我需要 select 全部 tr
在一个 table 中,实际上为此我写了这段代码:
var tr = doc.DocumentNode.SelectNodes("//tr");
这很好用,但我需要跳过有这个 class 的 tr:round-head expanded loaded
。
是否可以告诉 HtmlAgilityPack
到 select 所有没有上面指定的 class 的 tr?谢谢。
只需使用 Xpath 检查属性值:
//tr[@class != 'round-head expanded loaded']
我需要 select 全部 tr
在一个 table 中,实际上为此我写了这段代码:
var tr = doc.DocumentNode.SelectNodes("//tr");
这很好用,但我需要跳过有这个 class 的 tr:round-head expanded loaded
。
是否可以告诉 HtmlAgilityPack
到 select 所有没有上面指定的 class 的 tr?谢谢。
只需使用 Xpath 检查属性值:
//tr[@class != 'round-head expanded loaded']