XPath to select element based on childs child value

Trying to select an element based on the value of one of it’s childrens childrens

Thinking the following but not working, appreciate any help, thanks

./book[/author/name="John"] or

./book[/author/name text() = 'John']

Want all books where the author name=”John”

Xml file

<list>
   <book>
      <author>
         <name>John</name>
         <number>4324234</number>
      </author>
      <title>New Book</title>
      <isbn>dsdaassda</isbn>
   </book>
   <book>...</book>
   <book>...</book>
</list>

1 Answer
1

Leave a Comment