Jump to content

keerthikarri

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by keerthikarri

  1. There's a XML structure doc provided in W3Schools an d link is : http://www.w3schools.com/xsl/xpath_examples.asp

     

    <bookstore>
    <book category="COOKING">
    <title lang="en">Everyday Italian</title>
    <author>Giada De Laurentiis</author>
    </book>
    <book category="CHILDREN">
    <title lang="en">Harry Potter</title>
    <author>J K. Rowling</author>
    </book>
    </bookstore>

     

    In the above XML doc, I'm trying to find all books os category "Cooking"

    How can I achieve it using XPath

    I tried giving the XPath as: path="/bookstore/book[@caetgory=web]/author";

     

    But no luck.

    Any help is appreciated.

     

×
×
  • Create New...