<events>
<main>
<action>modification</action>
<subAction>weights</subAction>
</main>
</events>
<SeriesSet>
<Series id="Price_0">
<seriesBodies>
<SeriesBody>
<DataSeriesBodyType>Do Not Copy</DataSeriesBodyType>
</SeriesBody>
</SeriesBodies>
</Series>
</SeriesSet>
如何复制所有xml并排除DataSeriesBodyType元素
答案 0 :(得分:20)
您只需使用身份模板(正如您所使用的那样),然后使用匹配DataSeriesBodyType的模板,该模板不执行任何操作。
代码如下:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
<!-- Identity template : copy all text nodes, elements and attributes -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<!-- When matching DataSeriesBodyType: do nothing -->
<xsl:template match="DataSeriesBodyType" />
</xsl:stylesheet>
如果要规范化输出以删除空数据文本节点,请将以下模板添加到上一个样式表中:
<xsl:template match="text()">
<xsl:value-of select="normalize-space()" />
</xsl:template>