You are on page 1of 2

XPATH

Book.xml

<?xml version="1.0" encoding="ISO-8859-1"?>

<bookstore>

<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>

<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>

<book category="WEB">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>

<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>

</bookstore>
List what are the outcomes for the following XPATH expression based on the given xml document
(Book.xml).

a) bookstore/book/price

b) bookstore/book[1]/title

c) //title[@lang='en']

d) /bookstore/book[last()]

e) bookstore/book[price>35.00]/title

f) /bookstore/*

g) /bookstore/book/title | //price

h) //book[@category=WEB]/author

i) //author[1]

j) //book[price>39.00 and price<40.00]

k) Select all type of WEB book with price below than 45.00

l) Select the second last book.

m) Select all title that have attribute.

n) Select the name of book wrote by J K. Rowling

o) Display the category of book entitled Everyday Italian

You might also like