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

RE: Sorting alpha numeric values

Subject: RE: Sorting alpha numeric values
From: Sundar Shanmugasundaram <SSHANMUGASUNDARAM@xxxxxxxxxxxxx>
Date: Fri, 9 May 2003 11:32:12 +0530
alphanumeric values
Use this template

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" indent="yes" /> 	
  
<xsl:template match="/">
  <xsl:for-each select="./Root/Elem">
    <xsl:sort select="substring-after(@val,'A')" data-type="number"/>
    <xsl:value-of select="./@val"/>
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

Hope this helps you

-----Original Message-----
From: Hugh Dixon [mailto:hugh.dixon@xxxxxxxxxxxxxx]
Sent: Friday, May 09, 2003 10:37 AM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject:  Sorting alpha numeric values


I have a data set:
<Root>
<Elem val = "A1"/>
<Elem val = "A2"/>
<Elem val = "A21"/>
<Elem val = "A3"/>
</Root>

And a template:

<xsl:template match="/">
  <xsl:for-each select="./Root/Elem">
    <xsl:sort select="@val"/>
    <xsl:value-of select="./@val"/>
  </xsl:for-each>
</xsl:template>

I was hoping to sort the Elems into
A1
A2
A3
A21

But I cannot get a hybrid alpha/numeric sort happening.  Is there some
setting I'm missing, or could someone suggest how I can do this.  The
ability to create a custom routine on which to compare the values would
be handy, although I suspect the performance could be an issue.

Thanks in Advance!!

Hugh Dixon


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

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
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.