本文介紹了XPath 具有條件的多個屬性值之一的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
鑒于以下表達式,我如何使用 =
更簡潔明確?
Given the following expression, how can I use =
to be more concise and explicit?
(//h2/@id[contains(.,"foo") or contains(.,"bar") or contains(.,"baz"))[last()]
這是我嘗試過的,但我的翻譯說它無效:
Here's what I tried, but my interpreter says it's not valid:
(//h2/@id[text() = ("foo", "bar", "baz")])[last()]
我不能使用 contains()
因為我需要防止子字符串匹配.我正在使用 XPath 1.0,an answer to a related question 是這個問題的動力.
I cannot use contains()
because I need to guard against substring matches. I'm using XPath 1.0 and an answer to a related question is the impetus for this question.
推薦答案
在 XPath 2.0 中,
In XPath 2.0,
(//h2[@id = ("foo", "bar", "baz")])[last()]
將選擇文檔中的最后一個 h2
元素,其 id
屬性值為 foo
、bar
、或 baz
.
would select the last h2
element in the document with an id
attribute value of foo
, bar
, or baz
.
在 XPath 1.0 中,您將使用顯式布爾 或
運算符:
In XPath 1.0, you'd use explicit boolean or
operators:
(//h2[@id="foo" or @id="bar" or @id="baz"])[last()]
這篇關于XPath 具有條件的多個屬性值之一的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯(lián)網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯(lián)系我們刪除處理,感謝您的支持!