Jump to content

Issue in forming Xpath


keerthikarri

Recommended Posts

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.

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...