这应该这样做:
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sxi="http://sap.com/xi/XI/SplitAndMerge">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="sxi:Messages">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="sxi:Message1">
<xsl:apply-templates/>
</xsl:template>
</xsl:stylesheet>
第一个模板复制所有内容,其他两个模板跳过sxi:Messages
andxsi:Message1
元素 - 仍然复制它们的内容。
如果要删除http://sap.com/xi/XI/SplitAndMerge
命名空间中的所有元素:
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sxi="http://sap.com/xi/XI/SplitAndMerge">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="sxi:*">
<xsl:apply-templates/>
</xsl:template>
</xsl:stylesheet>