A sample XML file is:
<book category="lovestory">
<title lang="en">Сумерки</title>
<author>Stephanie Meyer</author>
<year>2003</year>
<price>50.07</price>
</book>
So far I have something like this XPath string:
xpath.compile("/book[/title='[a-zA-z0-9]+']/author");
How can I get all authors of the English books? (I mean that titles are latin npt cyrillic) (This is Russian)