我是 XPath 的新手,所以我需要一些帮助来解决这个问题。我有一个像这样的 XML 文件:
<items>
<item>
<brandName>Brand 1</brandName>
<productTypes>
<productType>Type 1</productType>
<productType>Type 3</productType>
</productTypes>
</item>
<item>
<brandName>Brand 1</brandName>
<productTypes>
<productType>Type 2</productType>
<productType>Type 3</productType>
</productTypes>
</item>
<item>
<brandName>Brand 2</brandName>
<productTypes>
<productType>Type 4</productType>
<productType>Type 5</productType>
</productTypes>
</item>
</items>
我试图找出一种方法来获取特定品牌的所有独特产品类型。例如,“Brand 1”的所有唯一 productType 将输出“Type 1”、“Type 2”、“Type 3”
我一直在谷歌搜索没有太多运气。任何帮助,将不胜感激!