次の XML から 2 つの説明値をフィルター処理するための正しい XPath 式は何ですか?
<course>
<description>This is a description of the course</description>
<description xsi:type="learning:outcome">This is the description of the learning outcome of the course</description>
</course>
正しいXPathは次のようになると思いました:
//course/description[@xsi:type=""]
//course/description[@xsi:type="learning:outcome"]
しかし、これは XMLSpy や Drupal のインポーターで試してもうまくいきません。