web-dev-qa-db-ja.com

XPathはXの子を持つノードのみを返すことができますか?

XPathを使用して、特定の子要素を持つノードのみを選択することは可能ですか?たとえば、このXMLでは、「bar」の子を持つペットの要素のみが必要です。したがって、結果のデータセットには、この例のlizardおよびpig要素が含まれます。

<pets>
  <cat>
    <foo>don't care about this</foo>
  </cat>
  <dog>
   <foo>not this one either</foo>
  </dog>
  <lizard>
   <bar>lizard should be returned, because it has a child of bar</bar>
  </lizard>
  <pig>
   <bar>return pig, too</bar>
  </pig>
</pets>

このXpathはすべてのペット"/pets/*"を提供しますが、'bar'という名前の子ノードを持つペットのみが必要です。

34
Ryan Stille

ここに、すべての栄光があります

/pets/*[bar]

英語:petsの子を持つすべての子barをくれ

50
/pets/child::*[child::bar]

申し訳ありませんが、以前の返信に対するコメントはありませんでした。

ただし、この場合はdescendant::軸。指定されたものから下のすべての要素を含みます。

/pets[descendant::bar]
23
Egor

子についてより具体的にしたい場合に備えて、子でセレクターを使用することもできます。

例:

<pets>
    <cat>
        <foo>don't care about this</foo>
    </cat>
    <dog>
        <foo>not this one either</foo>
    </dog>
    <lizard>
        <bar att="baz">lizard should be returned, because it has a child of bar</bar>
    </lizard>
    <pig>
        <bar>don't return pig - it has no att=bar </bar>
    </pig>
</pets>

今度は、すべてのpetsに子が含まれるbar属性attに値bazのみを気にします。次のxpath式を使用できます。

//pets/*[descendant::bar[@att='baz']]

結果

<lizard>
    <bar att="baz">lizard should be returned, because it has a child of bar</bar>
</lizard>
4
Hirnhamster