如何使用 XPath 根据其内容选择 XML 节点?
例如,如果我有以下 xml,并且我想选择包含 Ritchie 的 <author>-node 来获取作者的全名:
<books>
<book isbn='0131103628'>
<title>The C Programming Language</title>
<authors>
<author>Ritchie, Dennis M.</author>
<author>Kernighan, Brian W.</author>
</authors>
</book>
<book isbn='1590593898'>
<title>Joel on Software</title>
<authors>
<author>Spolsky, Joel</author>
</authors>
</book>
</books>