我有一个像这样的样本xml,
<doc>
<aa type="aaa" id="ggg">text</aa>
<aa type="bbb" id="hhh">text</aa>
<aa type="ccc" id="iii">text</aa>
<aa type="ccc" id="jjj">text</aa>
<aa type="bbb" id="kkk">text</aa>
<aa type="aaa" id="lll">text</aa>
</doc>
正如您所看到的,这里存在2个具有相同type
属性的元素,如果type属性相等的元素,我需要的是交换id
属性值。
所以,对于上面的例子,输出应该是,
<doc>
<aa type="aaa" id="lll">text</aa>
<aa type="bbb" id="kkk">text</aa>
<aa type="ccc" id="jjj">text</aa>
<aa type="ccc" id="iii">text</aa>
<aa type="bbb" id="hhh">text</aa>
<aa type="aaa" id="ggg">text</aa>
</doc>
我写了以下xsl来做这件事,
<xsl:template match="aa[@type='aaa' or @type='bbb' or @type='ccc'][1]">
<xsl:copy>
<xsl:if test="following::aa[@type=self::node()/@type]">
<xsl:attribute name="id">
<xsl:value-of select="following::aa[@type=self::node()/@type]/@type"/>
</xsl:attribute>
</xsl:if>
</xsl:copy>
</xsl:template>
<xsl:template match="aa[@type='aaa' or @type='bbb' or @type='ccc'][2]">
<xsl:copy>
<xsl:if test="following::aa[@type=self::node()/@type]">
<xsl:attribute name="id">
<xsl:value-of select="preceding::aa[@type=self::node()/@type]/@type"/>
</xsl:attribute>
</xsl:if>
</xsl:copy>
</xsl:template>
但这不符合预期,任何人都建议我使用XSLT如何做到这一点?
答案 0 :(得分:1)
尝试这个
<xsl:stylesheet
version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*"/>
<xsl:output indent="yes" omit-xml-declaration="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="aa">
<xsl:variable name="type" select="@type"/>
<xsl:copy>
<xsl:apply-templates select="@type"/>
<xsl:choose>
<xsl:when test="following::aa[@type=$type]">
<xsl:attribute name="id">
<xsl:value-of select="following::aa[@type=$type]/@id"/>
</xsl:attribute>
</xsl:when>
<xsl:when test="preceding::aa[@type=$type]">
<xsl:attribute name="id">
<xsl:value-of select="preceding::aa[@type=$type]/@id"/>
</xsl:attribute>
</xsl:when>
</xsl:choose>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>