I. 以下は単純な XSLT 2.0 ソリューションです(このソリューションの後に同様の XSLT 1.0 ソリューションが続きます)。
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:my="my:my">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/*">
<xsl:sequence select="my:grouping(*, 1)"/>
</xsl:template>
<xsl:function name="my:grouping" as="element()*">
<xsl:param name="pNodes" as="element()*"/>
<xsl:param name="pLevel" as="xs:integer"/>
<xsl:if test="$pNodes">
<xsl:for-each-group select="$pNodes" group-by="tokenize(@id, '\.')[$pLevel]">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:sequence select="
my:grouping(current-group()[tokenize(@id, '\.')[$pLevel+1]], $pLevel+1)"/>
</xsl:copy>
</xsl:for-each-group>
</xsl:if>
</xsl:function>
</xsl:stylesheet>
この変換がこの XML ドキュメント(整形式の XML ドキュメントにするために単一の最上位要素内にラップされた提供された XML フラグメント) に適用されると、次のようになります。
<t>
<item id="1"/>
<item id="1.1"/>
<item id="1.1.1"/>
<item id="1.1.2"/>
<item id="1.1.2.1"/>
<item id="1.2"/>
<item id="1.3"/>
</t>
必要な正しい結果が生成されます。
<item id="1">
<item id="1.1">
<item id="1.1.1"/>
<item id="1.1.2">
<item id="1.1.2.1"/>
</item>
</item>
<item id="1.2"/>
<item id="1.3"/>
</item>
Ⅱ.同様の XSLT 1.0 ソリューションを次に示します。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:key name="kFollowing" match="item"
use="generate-id(preceding-sibling::*
[string-length(current()/@id) > string-length(@id)
and
starts-with(current()/@id, concat(@id, '.'))]
[1])"/>
<xsl:template match="/*">
<xsl:call-template name="grouping">
<xsl:with-param name="pNodes" select="*"/>
<xsl:with-param name="pLevel" select="1"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="grouping">
<xsl:param name="pNodes"/>
<xsl:param name="pLevel" select="1"/>
<xsl:for-each select=
"$pNodes[$pLevel > string-length(@id) - string-length(translate(@id, '.', ''))]">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:call-template name="grouping">
<xsl:with-param name="pNodes" select="key('kFollowing', generate-id())"/>
<xsl:with-param name="pLevel" select="$pLevel+1"/>
</xsl:call-template>
</xsl:copy>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
この XSLT 1.0 変換が同じドキュメント (上記) に適用されると、同じ望ましい正しい結果が生成されます。
<item id="1">
<item id="1.1">
<item id="1.1.1"/>
<item id="1.1.2">
<item id="1.1.2.1"/>
</item>
</item>
<item id="1.2"/>
<item id="1.3"/>
</item>