XPath,返回包含特定元素的所有元素

时间:2014-03-16 18:13:46

标签: xml xpath

这是XML

<?xml version="1.0" encoding="UTF-8"?>

<bookstore>

<book>
  <title lang="eng">Harry Potter</title>
  <price>29.99</price>
  <discount>3%</discount>
</book>

<book>
  <title lang="eng">Learning XML</title>
  <price>39.95</price>
</book>

</bookstore>

我无法弄清楚XPath表达式返回所有以折扣销售的书籍。

1 个答案:

答案 0 :(得分:1)

你想在任何有折扣的地方买书:

//book[discount]