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 のみの式を使用することもできます。
(doc("countries.xml")//country[language='Russian']/last())[1]