ノード内のテキスト パターンのインデックスを検索する変換が必要です。たとえば、以下の XML です。ノードのテキスト パターン<txt>
が「ain」の場合、答えは 6、15、26、および 41 になります。
<root>
<info find="ain">
<txt>The rain in Spain falls mainly in the plain.</txt>
</info>
</root>
変身する...
<find>
<txt>The rain in Spain falls mainly in the plain.</txt>
<hit ndx="6"/>
<hit ndx="15"/>
<hit ndx="26"/>
<hit ndx="41"/>
</find>