这个 XSLT 将完成这项工作。但请注意,它仅在输入 XML 的命名空间前缀等于hj:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:hjold="http://abc.com/source/error" xmlns:hj="http://abc.com/source/error/i1" exclude-result-prefixes="hjold">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="a[namespace-uri-for-prefix('hj', /*) != '']">
<a xmlns:hj="http://abc.com/source/error/i1">
<xsl:apply-templates select="@*|node()" />
</a>
</xsl:template>
<xsl:template match="hjold:*" >
<xsl:element name="hj:{local-name()}">
<xsl:apply-templates select="@*|node()" />
</xsl:element>
</xsl:template>
<xsl:template match="*" >
<xsl:element name="{local-name()}">
<xsl:apply-templates select="@*|node()" />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
要在 XSLT 1.0 中使用并且即使没有声明命名空间,命名空间在输出中也无关紧要,请更改:
<xsl:template match="a[namespace-uri-for-prefix('hj', /*) != '']">
至
<xsl:template match="a">