vote up 2 vote down star

The XPath "/bookstore/book[1]" select the first book node under bookstore.

How can I select the first node that matches a more complicated condition, e.g. the first node that matches "/bookstore/book[@location='US']"

flag

63% accept rate

2 Answers

vote up 8 vote down check

use

/bookstore/book[@location='US'][1]

This will first get the book elements with the location attribute equal to 'US'. Then it will select the first node from that set

(note this is not the same as

/bookstore/book[1][@location='US']

unless the first element also happens to have that location attribute )

link|flag
vote up 1 vote down

The alternative to Jonathan Fingland's perfectly valid suggestion is:

/bookstore/book[position() = 1 and @location = 'US']

You can build complex expressions in predicates with the Boolean operators "and" and "or", and with the Boolean XPath functions not(), true() and false(). Plus you can wrap sub-expressions in parentheses.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.