[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: sorting elements


xforms format number


On 2/1/06, David Carlisle <davidc@n...> wrote:

You didn't say what language you are using to do the sort.


I'm using xslt 1.0 :(
thank for your answer.

In XSLT2 for
example you could use something like

<xsl:stylesheet version=" 2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output indent="yes"/>

<xsl:template match="x">
<x>
<xsl:perform-sort select="*">
<xsl:sort select="string-join(for $i in tokenize(.,'\.') return
                                format-number(number($i),'000000'),'.')"/>
</xsl:perform-sort>
</x>
</xsl:template>

</xsl:stylesheet>


$ saxon8 srt.xml srt.xsl
<?xml version="1.0" encoding="UTF-8"?>
<x>
   <art>1</art>
   <art>1.1</art>
   <art>2</art>
   <art>2.1</art>
   <art>2.1.1</art>
</x>


Of course if your example is really representative, and all your numbers
are single digits then you don't need to split things up and rejoin, you
can just use
<xsl:sort select="."/>
which of course is also easy to do in xslt1

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________



--
----------------------------------------------------------------------
Esteban Pizzini
(http://mod-apache-snmp.sourceforge.net)

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.