1

我想计算数据库中俄语国家的数量。我从

doc("countries.xml")//country[language="Russian"]/data(@name)

这给了我国家的名字。我知道我必须将“名称”更改为“数字”,但我还能如何获得数字 (6) 而不是他们的名字?我会很感激你的帮助。

4

1 回答 1

0

使用

count(doc("countries.xml")//country[language="Russian"])

或者,可以使用这个 XPath 2.0 - only 表达式:

(doc("countries.xml")//country[language='Russian']/last())[1]
于 2013-02-23T16:24:17.707 回答