ItemInfo 内の特定の部分文字列に評価される xpath 式を記述しようとしています
<Catalog>
<List>
<Item>
<ItemInfo>
This describes the Item In which it is listed.
</ItemInfo>
</Item>
<Item>
<ItemInfo>
This is another item description.
</ItemInfo>
</Item>
</List>
</Catalog>
私は、contain() が必要であり、述語を使用する必要があることを知っています。その中の文字列は非常に長く、探している特定の部分文字列があります。テキスト内でワイルドカードを使用する方法がわかりません。これがどのように見えるかについての私の考えです。
> /Catalog/List//Item/ItemInfo[contains(.,*'another'*)]