2013-06-18 145 views
3

放置或條件的Xpath我有一個關於HTML敏捷性包如何使用HTML敏捷性包

我想要得到的節點集合,其事業部的0人推薦閱讀財產問題提出「假」或「假」。

如何在XPATH中添加OR條件。 下面是我的代碼,這是行不通的。它返回null。

HtmlNodeCollection numbers = 
htmlDoc.DocumentNode.SelectNodes("//div[@ispublished='false|False']"); 

感謝

回答

10

嘗試

htmlDoc.DocumentNode.SelectNodes("//div[@ispublished='false' or @ispublished='False']"); 
2

你試過:

htmlDoc.DocumentNode.SelectNodes("//div[@ispublished='false' or @ispublished='False']"); 

更多關於xpath or