当前位置: 代码迷 >> XML/SOAP >> 帮忙写一个XPath解决方案
  详细解决方案

帮忙写一个XPath解决方案

热度:457   发布时间:2014-02-23 23:10:48.0
帮忙写一个XPath

<?xml version="1.0" encoding="ISO-8859-1"?> 
<bookstore>
  <book> 
    <title lang="eng">Harry Potter</title>
    <author>Mr.A</author>
    <author>Mr.B</author>
  </book> 
  <book> 
    <title lang="eng">Learning XML</title> 
    <author>Mr.A</author>
    <author>Mr.C</author>
  </book> 
</bookstore>


求一个 XPath :获得所有内容为 Mr.A 的 author 节点集合

即: 结果 
1. <author>Mr.A</author>
2. <author>Mr.A</author>//author[text()='Mr.A']赶紧用//author[text()='Mr.A']测试吧 
  相关解决方案