我将使用什么 XPath 表达式来获取每本书的“HarryPotter:”后面的字符串。
IE。鉴于此 XML:
<bookstore>
<book>
HarryPotter:Chamber of Secrets
</book>
<book>
HarryPotter:Prisoners in Azkabahn
</book>
</bookstore>
我会回来的:
Chamber of Secrets
Prisoners in Azkabahn
我尝试过这样的事情:
/bookstore/book/text()[substring-after(. , 'HarryPotter:')]
我认为我的语法不正确...