Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

apply-templates in reverse order

Tags:

sorting

xslt

Say I have this given XML file:

<root>
    <node>x</node>
    <node>y</node>
    <node>a</node>
</root>

And I want the following to be displayed:

ayx

Using something similar to:

<xsl:template match="/">
    <xsl:apply-templates select="root/node"/>
</xsl:template>
<xsl:template match="node">
    <xsl:value-of select="."/>
</xsl:template>
like image 285
Pierre Spring Avatar asked Sep 08 '08 15:09

Pierre Spring


2 Answers

Easy!

<xsl:template match="/">
    <xsl:apply-templates select="root/node">
        <xsl:sort select="position()" data-type="number" order="descending"/>
    </xsl:apply-templates>
</xsl:template>

<xsl:template match="node">
    <xsl:value-of select="."/>
</xsl:template>
like image 167
samjudson Avatar answered Nov 04 '22 12:11

samjudson


You can do this, using xsl:sort. It is important to set the data-type="number" because else, the position will be sorted as a string, end therefor, the 10th node would ge considered before the 2nd one.

<xsl:template match="/">
    <xsl:apply-templates select="root/node">
        <xsl:sort 
            select="position()" 
            order="descending" 
            data-type="number"/>
    </xsl:apply-templates>
</xsl:template>
<xsl:template match="node">
    <xsl:value-of select="."/>
</xsl:template>
like image 43
Pierre Spring Avatar answered Nov 04 '22 13:11

Pierre Spring