XPath : finding an attribute node (and only one)

2020-04-07 06:33发布

What is the XPath to find only ONE node (whichever) having a certain attribute (actually I'm interested in the attribute, not the node). For example, in my XML, I have several tags having a lang attribute. I know all of them must have the same value. I just want to get any of them.

Right now, I do this : //*[1][@lang]/@lang, but it seems not to work properly, for an unknown reason.

My tries have led me to things ranging from concatenation of all the @lang values ('en en en en...') to nothing, with sometimes inbetween what I want but not on all XML.


EDIT :

Actually //@lang[1] can not work, because the function position() is called before the test on a lang attribute presence. So it always takes the very first element found in the XML. It worked best at the time because many many times, the lang attribute was on root element.

标签: xpath
3条回答
smile是对你的礼貌
2楼-- · 2020-04-07 07:09

After some more tackling, here is a working solution :

 (//@lang)[1]

Parentheses are needed to separate the [1] from the attribute name, otherwise the position() function is applied within the parent element of the attribute (which is useless since there can be only one attribute of a certain name within a tag : that's why //@lang[2] always selects nothing).

查看更多
姐就是有狂的资本
3楼-- · 2020-04-07 07:09

Did you tried this?

//@lang[1]

here you can see an example.

查看更多
beautiful°
4楼-- · 2020-04-07 07:30

The following XPath seems to do what you want:

//*[@lang][1]/attribute::lang
查看更多
登录 后发表回答