xsl-list
[Top] [All Lists]

Re: Natural Sort

2006-01-25 03:11:24

I don't think I can use a regular expression as the second parameter
for substring-*

You could in XSLT2, in XSLT1 you could do:

<xsl:sort
  select="translate(substring-before(@dn, '.'),'0123456789','')"
  data-type="text"
  order="ascending"/>
<xsl:sort
  select="translate(substring-before(@dn, '.'),'abcdefghijklmnopqrstuvwxyz','')"
  data-type="number"
  order="ascending"/>


so this sorts first on the text then on the numbers, so all teh media
ones would come before the members oones, but mefia10 will come after
media2.


<server dn="media1.mysite.com" id="server392" os="FreeBSD 5.1"/>
<server dn="media2.mysite.com" id="Server488" os="Fedora Core 1"/>
   ...
<server dn="media10.mysite.com" id="Server433" os="Fedora Core 1"/>

<server dn="members1.mysite.com" id="server322" os="Debian Linux"/>
<server dn="members2.mysite.com" id="Server435" os="Fedora Core 2"/>
   ...
<server dn="members10.mysite.com" id="Server491" os="FreeBSD 4.11"/>



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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>