XSLT:选择不同但与其他示例略有不同

时间:2009-11-28 18:23:11

标签: xslt distinct

我有以下XML:

<a>
    <b>
        <d>D1 content (can include child nodes)</d>
    </b>
    <b>
        <c>C1 content (can include child nodes)</c>
    </b>
    <b>
        <e>E1 content (can include child nodes)</e>
    </b>
    <b>
        <c>C2 content (can include child nodes)</c>
    </b>
</a>

使用XSLT 1.0,我需要简单地生成:“cde”;即由节点名称排序的/ a / b /的直接子节点的名称的不同列表。每个b只有一个具有任意名称的子项。

我可以制作“ccde”:

<xsl:for-each select="/a/b/*">
    <xsl:sort select="name(.)"/>
    <xsl:value-of select="name(.)" />
</xsl:for-each>

我尝试过使用通常的previous-sibling ::比较,但由于每个b只有一个孩子,所以前面的兄弟一直都没有。

2 个答案:

答案 0 :(得分:1)

首先将此关键元素添加到XSL的顶部: -

<xsl:key name="tagNames" match="/a/b/*" use="name()" /> 

现在你的每个循环看起来像这样: -

<xsl:template match="/*">
    <xsl:for-each select="/a/b/*[count(. | key('tagNames', name())[1]) = 1]">
        <xsl:sort select="name()" />
        <xsl:value-of select="name()" />
    </xsl:for-each>
</xsl:template>

答案 1 :(得分:0)

你可以使用Muenchian方法:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:key name="groupIndex" match="*" use="name()" />
    <xsl:template match="/">
        <xsl:apply-templates select="a/b"/>
    </xsl:template>
    <xsl:template match="b">
        <xsl:apply-templates select="*[1][generate-id(.) = generate-id(key('groupIndex', name())[1])]" mode="group" />
    </xsl:template>
    <xsl:template match="*" mode="group">
        <xsl:value-of select="name()"/>
    </xsl:template>
</xsl:stylesheet>