2010-06-27 47 views
1

我可以使用HTMLAgility將OR子句放入節點選擇在節點選擇標準中添加OR子句 - HTMLAgility

(HtmlAgilityPack.HtmlNodeCollection)doc.DocumentNode.SelectNodes("//td[@class=\"roomPrice figure\"]"); 

我需要的是有時它應該像SelectNodes("//td[@class=\"roomPrice figure\"]"); 有時候它就像SelectNodes("//td[@class=\"roomPrice figure bb\"]");

我需要得到兩個類都將roomPrice figure或者roomPrice figure bb

如何實現這一目標。

感謝您的幫助

回答

2

Xpath確實有OR操作符。試試這個爲您的選擇查詢 -

"//td[@class=\"roomPrice figure\" or @class=\"roomPrice figure bb\"]"