RE: [xsl] Data sequence

Subject: RE: [xsl] Data sequence
From: "JS rawat" <jrawat@xxxxxxxxxxxxxx>
Date: Fri, 22 Oct 2010 14:08:17 +0530
Thanks Michael and Mukul for quick help!!! 

-----Original Message-----
From: Michael Kay [mailto:mike@xxxxxxxxxxxx] 
Sent: Friday, October 22, 2010 1:31 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Data sequence


<xsl:for-each select="author">
<xsl:sort select="number(seq)"/>
<xsl:copy-of select="."/>
</xsl:for-each>

Michael Kay
Saxonica
>
> Hi Team,
> Is there any quick idea about how to sequence the authors in the 
> output file.
>
> Input
> <article>
> <author seq="1">author 1</author>
> <author seq="3">author 3</author>
> <author seq="2">author 2</author>
> </article>
>
> Desired output
> <article>
> <au seq="1">author 1</author>
> <au seq="2">author 2</author>
> <author seq="3">author 3</author>
> </article>
>
> Thanks in advance
> ...JSR

Current Thread