0
Hello Stackoverflowコミュニティ!Xpathは、特定のノードを持たない2つの異なるノードを選択します。
私は、次のXML構造を持っている:
<fruit>
<id>1</id>
<name>Apple</name>
<species>Tree</species>
<features>
<from>Reineta</from>
<into>Golden</into>
</features>
</fruit>
<fruit>
<id>2</id>
<name>Orange</name>
<species>Tree</species>
<features>
<from>Citric</from>
<into>Mediterranean</into>
</features>
</fruit>
<fruit>
<id>3</id>
<name>Peach</name>
<species>Tree</species>
<features>
<from>Golden</from>
</features>
</fruit>
にはどうすればいいんノードに/機能が含まれていないもののフルーツノードの<name>
と<features>
を得ることができますか?私はこの試みた
:
//fruit/features[from][not(into)]
を私は<features>
を得ることができますが、どのように私は、同じクエリでは、あまりにも<name>
を得ることができますか?
ありがとうございました。
デモリンク/ボタンをありがとうございました。 – Rao
ありがとうございます!非常に便利でクリアです! – Joanmacat