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

Re: a sorting conundrum

Subject: Re: a sorting conundrum
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Fri, 4 Mar 2005 06:47:56 +1100
efficient substring
On Fri, 4 Mar 2005 06:24:29 +1100, Dimitre Novatchev
<dnovatchev@xxxxxxxxx> wrote:
> Use the following sorting key:
> 
> substring(translate(., ' ', ''),
>                 string-length(substring-before(.,' '))  + 1
>                 )
> 
> This calculates the index of the first space, then removes the
> space(s) from the string, then uses what follows the space as the
> sorting key.
> 
> Seems to be more logical than any hack. Tested.


If we want to have a more efficient variant of the above, which avoids
the translate(),
(and we assume an intelligent optimizer),

then the following should be much more efficient:


substring(., 
                  string-length(substring-before(.,' ')) 
                + 
                  (string-length(substring-before(.,' ')) > 0)
                 )


Cheers,
Dimitre

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.