这是一种方法。
<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<!-- Identity template. -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Trailer">
<!-- Do not output the Trailer node or comments. Only output its child nodes. -->
<xsl:apply-templates select="*"/>
</xsl:template>
<!-- Suppress Field4 -->
<xsl:template match="Field4"/>
</xsl:stylesheet>
问题不完全清楚。可以使用以下方法产生预期结果:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Trailer">
<xsl:apply-templates select="Field5|Field6|Field7"/>
</xsl:template>
</xsl:stylesheet>