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.
リーフノードの場合にtrueを返すXPath式を記述したいと思います。
どうすればこれを達成できますか。
//a[not(node()]
このようなもの?
ありがとうございました
コンテキストノードに子がない場合にのみtrueを返す式は、次のとおりです。
not(child::node())
テキストなどもノードであるため、おそらくこれが必要です。
not(*)