in reply to Re: XPath to XML
in thread XPath to XML

Thanks LanX for the update.

lets take I have an input like below and related data,

/bookstore/book@category='COOKING'
/bookstore/book/title
/bookstore/book/title@lang='en'
/bookstore/book/author
/bookstore/book/year
/bookstore/book/price
Any chance of getting an XML file like below,

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

I undersatnd Xpath generally works the otherway around and traversing XML file, but wondering any modules - which helps in constructing XML file from given XPath.

Thanks,