转换为从输入中有条件地屏蔽元素和属性

时间:2012-06-14 10:24:07

标签: xml xslt-1.0

我的输出xml应该使用一些基于变量flag的元素进行掩码。如果标志的值为'1',则输出xml应该只包含元素'a'(包括其所有属性和子元素) )。如果标志为2,则输出xml应包含元素a和b。如果为3,则输入中存在的所有元素和属性都应出现在输出

我的输入xml

<Root>

<a ref="t">
<s id="2">value</s>
</a>
<b ref="t">
<s id="2">value</s>
</b>
<c ref="t">
<s id="2">value</s>
</c>
</Root>

我想要的输出(当标志为1时)

<Root>

<a ref="t">
<s id="2">value</s>
</a>
</Root>

xslt我试过

<xsl:stylesheet version="1.0"

xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:variable name="flag" select="'1'"/>


<xsl:strip-space elements="*"/>

<xsl:template match="node()|@*">

<xsl:copy>

<xsl:apply-templates select="node()|@*"/>

</xsl:copy>

</xsl:template>

<xsl:if test ="$flag ='1'">
<xsl:template match="b"></xsl:template>
<xsl:template match="c"></xsl:template>
</xsl:if>

</xsl:stylesheet>

1 个答案:

答案 0 :(得分:0)

以下xslt正在运行。

<xsl:stylesheet version="1.0"

xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:variable name="flag" select="'1'"/>


<xsl:strip-space elements="*"/>

<xsl:template match="node()|@*">

<xsl:copy>

<xsl:apply-templates select="node()|@*"/>

</xsl:copy>

</xsl:template>


<xsl:template match="b">
<xsl:if test="$flag ='3' or $flag='2'">
  <xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:if>
</xsl:template>

<xsl:template match="c">
<xsl:if test="$flag ='3'">
  <xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:if>
</xsl:template>

</xsl:stylesheet>