0

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'*)]
4

1 に答える 1

3

ワイルドカードはありません。リテラル部分文字列を指定するだけです:

/Catalog/List//Item/ItemInfo[contains(.,'another')]
于 2013-04-29T23:48:43.713 に答える