我有这样的XML:
<a>
<b>
<c>some text here</c>
</b>
</a>
<a>
<b>
<c>another cool text</c>
</b>
</a>
我需要匹配// a / b / c / text()里面的单词“cool”并像这样转换XML
<a>
<b>
<c>some text here</c>
</b>
</a>
<x>
<y> prepend to cool text </y>
</x>
<a>
<b>
<c>another cool text</c>
</b>
</a>
我试过了:
<xsl:template
match="//a/b/c/matches(text(),'\.*cool\*.')">
...
</xsl:template>
但没有运气:
XTSE0340: XSLT Pattern syntax error at char 153 on line 30 in {...\.*cool\*...}:
Function call may appear only at the start of a pattern
我在这里错过了什么?
答案 0 :(得分:1)
您的匹配不正确,应在括号[]
内进行测试:
<xsl:template
match="//a/b/c[matches(text(), '.*cool.*')]">
...
</xsl:template>
此外,如果你的正则表达式很简单,那么你可以使用XPath方法contains()
。