Subject: Re: Data sequence
From: Michael Kay <mike@xxxxxxxxxxxx>
Date: Fri, 22 Oct 2010 09:01:14 +0100
|
<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
|