我已经做了几个小时了。我似乎无法做到这一点。
我有这个示例 XML 文件:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy® -->
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="WEB">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
我正在尝试使用 XPath 的 count() 函数来返回一个值在文件中出现的次数(返回包含该值的元素的计数)。
我目前可以使用:
count(//*[contains(author, 'J K.')])
这返回“1”,这是正确的。现在,假设我不知道要搜索的值位于哪个元素或属性中。如果我尝试使用:
count(//*[contains(/*, 'J K.')])
这将返回“25”,这是文件中所有节点的计数。我认为谓词中的 contains 函数中的第一个参数指定了在哪里查找值。但是,在这种情况下 is 似乎表示要返回的值。我有点困惑。我也试过这个:
query = "count(//*[contains(/*, 'J K.')]/book/..)";
这也带回了正确的值,但同样,您必须知道该值所在的级别。如果您有一个针对不同节点具有多个级别的更复杂的文件,并且您仍想搜索整个文件,那么您将如何做呢?