次のxmlでxpathを使用しています。2つの式に一致するノードのみを抽出する必要があります。ノードが返されないため、間違っている可能性があります。
<item>
<title>a product</title>
<link>http://www.aproduct.com</link>
<description>cool product</description>
<author>here@there.com</author>
<id_product><![CDATA[ 6]]></id_product>
<section><![CDATA[ industry]]></section>
</item>
<item>
<title>another product</title>
<link>http://www.anotherproduct.com</link>
<description>awesome product</description>
<author>here@there.com</author>
<id_product><![CDATA[ 8]]></id_product>
<section><![CDATA[ diy]]></section>
</item>
私が今使っているのは、
//item/section[text() = "industry"] | //item/id_product[ text() ="6"]
しかし、私も試しました
//item/section[ . = "industry"] | //item/id_product[ . ="8"]
誰でも私を助けることができますか?