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.
以下のような XML ツリーがあるとします。
proceedings -name -contents -article -author -title -pages
著者が 1 人しかいないタイトルを特定するにはどうすればよいですか? また、XPath を使用している著者が 3 人以上いる記事の数は?
1人の著者によるタイトル:
/proceedings/contents/article[count(author)=1]/title
著者が3人を超える記事の数:
count(/proceedings/contents/article[count(author)>3])