xml – 如何使用Xpath选择具有多个类的元素?

前端之家收集整理的这篇文章主要介绍了xml – 如何使用Xpath选择具有多个类的元素?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在上面的xml示例中,我想使用xpath选择属于类foo而不是在类bar中的所有书。
<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
  <book class="foo">
    <title lang="en">Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
  </book>
  <book class="foo bar">
    <title lang="en">Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
  </book>
  <book class="foo bar">
    <title lang="en">Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
  </book>
</bookstore>
通过用前导和尾随空格填充@class值,您可以测试“foo”和“bar”的存在,而不必担心它是第一个,中间还是最后,以及对“食物”的任何假阳性点击“barren”@class值:
/bookstore/book[contains(concat(' ',@class,' '),' foo ')
        and not(contains(concat(' ',' bar '))]
原文链接:https://www.f2er.com/xml/293537.html

猜你在找的XML相关文章