这种转变:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:x="http://www.w3.org/1999/xhtml"
xmlns:my="my:my">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<my:names>
<n>type</n>
<n>name</n>
<n>group</n>
<n>id</n>
<n>link</n>
<n>display</n>
</my:names>
<xsl:variable name="vNames" select="document('')/*/my:names/*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="a[@name] | x:a[@name]">
<xsl:copy>
<xsl:apply-templates select="@*[not(name()='name')]"/>
<xsl:apply-templates select="@name"/>
</xsl:copy>
</xsl:template>
<xsl:template match="a/@name | x:a/@name" name="split">
<xsl:param name="pText" select="."/>
<xsl:param name="pOrd" select="1"/>
<xsl:if test="$pText">
<xsl:attribute name="{$vNames[position()=$pOrd]}">
<xsl:value-of select=
"substring-before(concat($pText, ','), ',')"/>
</xsl:attribute>
<xsl:call-template name="split">
<xsl:with-param name="pText" select="substring-after($pText, ',')"/>
<xsl:with-param name="pOrd" select="$pOrd+1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
应用于提供的 XML 文档时:
<Data>
<AAA>
<strong xmlns="http://www.w3.org/1999/xhtml">some Text
<a href="#" name="Value1,Value2,Value3,Value4,Value5,Value6" id="Functionaldata">Value6</a>
</strong>
hello
<a title="google" href="http://google.com">Hey</a> all
<a href="#" name="element1,element2,element3,element4,element5,element6" id="Functionaldata">element6</a>
</AAA>
</Data>
产生想要的正确结果:
<Data>
<AAA>
<strong xmlns="http://www.w3.org/1999/xhtml">some Text
<a href="#" id="Value4" type="Value1" name="Value2" group="Value3" link="Value5" display="Value6"/>
</strong>
hello
<a title="google" href="http://google.com">Hey</a> all
<a href="#" id="element4" type="element1" name="element2" group="element3" link="element5" display="element6"/>
</AAA>
</Data>
说明:
这建立在您之前问题的解决方案的基础上,并进行了以下更改:
身份规则的使用和覆盖。
不是元素,而是创建具有拆分结果作为值的属性。
要生成的属性的名称被指定为全局元素的子my:names
元素。
更新:
在评论中,OP 修改了他的问题,说:
我忘了为“a”标签添加名称空间。所有的“a”标签都有“xhtml”命名空间。
答案是,在这种情况下,提供的转换仍然可以正常工作,不需要对其进行任何更改。
但是,它可以通过以下方式简化:
替换:
<xsl:template match="a[@name] | x:a[@name]">
只需:
<xsl:template match="x:a[@name]">
并替换:
<xsl:template match="a/@name | x:a/@name" name="split">
只需:
<xsl:template match="x:a/@name" name="split">
这些变化后的完整转变变成:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:x="http://www.w3.org/1999/xhtml"
xmlns:my="my:my">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<my:names>
<n>type</n>
<n>name</n>
<n>group</n>
<n>id</n>
<n>link</n>
<n>display</n>
</my:names>
<xsl:variable name="vNames" select="document('')/*/my:names/*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="x:a[@name]">
<xsl:copy>
<xsl:apply-templates select="@*[not(name()='name')]"/>
<xsl:apply-templates select="@name"/>
</xsl:copy>
</xsl:template>
<xsl:template match="x:a/@name" name="split">
<xsl:param name="pText" select="."/>
<xsl:param name="pOrd" select="1"/>
<xsl:if test="$pText">
<xsl:attribute name="{$vNames[position()=$pOrd]}">
<xsl:value-of select=
"substring-before(concat($pText, ','), ',')"/>
</xsl:attribute>
<xsl:call-template name="split">
<xsl:with-param name="pText" select="substring-after($pText, ',')"/>
<xsl:with-param name="pOrd" select="$pOrd+1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>