输入XML结构:
<ITEMS>
<ITEM>
<ITEMTYPE>FOO</ITEMTYPE>
</ITEM>
<ITEM>
<ITEMTYPE>BAR</ITEMTYPE>
</ITEM>
</ITEMS>
我将序列作为参数传递给XSLT。如果序列中存在ITEMTYPE,则必须删除节点。它必须在不区分大小写的情况下进行处理。
我是XSLT的新手。我编码如下,但不能破解不区分大小写。
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
exclude-result-prefixes="#all">
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
<xsl:param name="itemsToRemove"/>
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="ITEM">
<xsl:variable name="currentItemType">
<xsl:value-of select="itemType"/>
</xsl:variable>
<xsl:if test="not(fn:index-of($itemsToRemove, $currentItemType))">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:2)
如果您想使用不区分大小写的值比较,那么一种方法是使用带有matches
标志的i
函数:
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:param name="itemsToRemove" select="'foo'"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="ITEM[$itemsToRemove[matches(., current()/ITEMTYPE, 'i')]]"/>
</xsl:transform>
使用http://xsltransform.net/3NSSEvW输出
<ITEMS>
<ITEM>
<ITEMTYPE>BAR</ITEMTYPE>
</ITEM>
</ITEMS>