尝试在XSLT中构建模板以匹配特定的Xpath案例。
在此示例XML文档中,我希望匹配整个文档中的所有文本,但<x>
除外:
<root>
<tag1> I want this text </tag1>
<tag2> I want this text </tag2>
<x> I don't want to match on this text </x>
<tag3> I want this text </tag3>
</root>
关于这个Xpath的任何想法?我正在尝试为它构建一个模板,以便针对这个特定情况转换我的文档。
我提出的远远不是这样的事情:
<xsl:template match="text()[not(matches(.,x))]">
有什么想法吗?
答案 0 :(得分:4)
当你写作。它采用文本节点的字符串值,而不是父节点的名称。并且匹配需要字符串参数
你可以把它写成:
<xsl:template match="text()[not(matches(name(..),'x'))]">
或更好:
<xsl:template match="text()[not(parent::x)]">
答案 1 :(得分:1)
好多了 - 没有任何反向轴:
<xsl:template match="*[not(self::x)]/text()">