Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想计算数据库中俄语国家的数量。我从
doc("countries.xml")//country[language="Russian"]/data(@name)
这给了我国家的名字。我知道我必须将“名称”更改为“数字”,但我还能如何获得数字 (6) 而不是他们的名字?我会很感激你的帮助。
使用:
count(doc("countries.xml")//country[language="Russian"])
或者,可以使用这个 XPath 2.0 - only 表达式:
(doc("countries.xml")//country[language='Russian']/last())[1]
标签