从以下 XML 中过滤出两个描述值的正确 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 导入器中尝试时不起作用任何建议将不胜感激。