[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Sorting numbers as strings

Jack Bauer

5/18/2009 2:27:00 PM

I'm trying to sort some strings containing numbers. The strings
themselves can't be changed (they're items being pulled from a DB.) This
is an example of some of the things I need to sort. First is how I
wanted them sorted:

FastEthernet0/1
FastEthernet0/10
FastEthernet0/11
FastEthernet0/12
FastEthernet0/13
FastEthernet0/2
FastEthernet0/3
FastEthernet0/4
FastEthernet0/5
FastEthernet0/6
FastEthernet0/7
FastEthernet0/8
FastEthernet0/9
...

I need to get it like this:
FastEthernet0/1
FastEthernet0/2
FastEthernet0/3
FastEthernet0/4
FastEthernet0/5
FastEthernet0/6
FastEthernet0/7
FastEthernet0/8
FastEthernet0/9
FastEthernet0/10
FastEthernet0/11
FastEthernet0/12
FastEthernet0/13

Then they could turn into FastEthernet1/1, etc. Also, the name doesn't
really matter as it could have FastEthernet, another name, or none at
all and just be 0/1 or whatever.

I'm guessing something like a regex to strip non-numbers so
FastEthernet0/1 becomes 01 then sort numerically, but that wouldn't help
if I have FastEthernet0/1, GigabitEthernet0/1, and FastEthernet0/2 since
it would come out in an incorrect order (01, 01, 02 instead of 01, 02,
01 because of the F and G alphabetical sort.)

Any ideas of the best way to go about this?
--
Posted via http://www.ruby-....

15 Answers

Jack Bauer

5/18/2009 2:28:00 PM

0

Jack Bauer wrote:
> First is how I wanted them sorted:



Sorry I meant to say that the first version is how they're CURRENTLY
being sorted and the second version is how I WANT them sorted.
--
Posted via http://www.ruby-....

Douglas A. Seifert

5/18/2009 2:38:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

Maybe something like this:

irb> a = ["FastEthernet0/1", "FastEthernet0/10", "FastEthernet0/11",
"FastEthernet0/12", "FastEthernet0/13", "FastEthernet0/2",
"FastEthernet0/3", "FastEthernet0/4", "FastEthernet0/5", "FastEthernet0/6",
"FastEthernet0/7", "FastEthernet0/8", "FastEthernet0/9"]
irb> a.sort_by{|s| n,i = s.split('/'); [n, i.to_i]}
=> ["FastEthernet0/1", "FastEthernet0/2", "FastEthernet0/3",
"FastEthernet0/4", "FastEthernet0/5", "FastEthernet0/6", "FastEthernet0/7",
"FastEthernet0/8", "FastEthernet0/9", "FastEthernet0/10",
"FastEthernet0/11", "FastEthernet0/12", "FastEthernet0/13"]


On Mon, May 18, 2009 at 7:27 AM, Jack Bauer <realmadrid2727@yahoo.es> wrote:

> Jack Bauer wrote:
> > First is how I wanted them sorted:
>
>
>
> Sorry I meant to say that the first version is how they're CURRENTLY
> being sorted and the second version is how I WANT them sorted.
> --
> Posted via http://www.ruby-....
>
>

Robert Klemme

5/18/2009 2:41:00 PM

0

2009/5/18 Jack Bauer <realmadrid2727@yahoo.es>:
> I'm trying to sort some strings containing numbers. The strings
> themselves can't be changed (they're items being pulled from a DB.) This
> is an example of some of the things I need to sort. First is how I
> wanted them sorted:
>
> FastEthernet0/1
> FastEthernet0/10
> FastEthernet0/11
> FastEthernet0/12
> FastEthernet0/13
> FastEthernet0/2
> FastEthernet0/3
> FastEthernet0/4
> FastEthernet0/5
> FastEthernet0/6
> FastEthernet0/7
> FastEthernet0/8
> FastEthernet0/9
> ...
>
> I need to get it like this:
> FastEthernet0/1
> FastEthernet0/2
> FastEthernet0/3
> FastEthernet0/4
> FastEthernet0/5
> FastEthernet0/6
> FastEthernet0/7
> FastEthernet0/8
> FastEthernet0/9
> FastEthernet0/10
> FastEthernet0/11
> FastEthernet0/12
> FastEthernet0/13
>
> Then they could turn into FastEthernet1/1, etc. Also, the name doesn't
> really matter as it could have FastEthernet, another name, or none at
> all and just be 0/1 or whatever.
>
> I'm guessing something like a regex to strip non-numbers so
> FastEthernet0/1 becomes 01 then sort numerically, but that wouldn't help
> if I have FastEthernet0/1, GigabitEthernet0/1, and FastEthernet0/2 since
> it would come out in an incorrect order (01, 01, 02 instead of 01, 02,
> 01 because of the F and G alphabetical sort.)
>
> Any ideas of the best way to go about this?

16:39:42 Temp$ ruby19 srt.rb
FastEthernet0/1
FastEthernet0/2
FastEthernet0/3
FastEthernet0/4
FastEthernet0/5
FastEthernet0/6
FastEthernet0/7
FastEthernet0/8
FastEthernet0/9
FastEthernet0/10
FastEthernet0/11
FastEthernet0/12
FastEthernet0/13
16:40:24 Temp$ cat srt.rb
puts DATA.sort_by {|s| s.scan(/\d+/).map {|x| x.to_i} }
__END__
FastEthernet0/1
FastEthernet0/10
FastEthernet0/11
FastEthernet0/12
FastEthernet0/13
FastEthernet0/2
FastEthernet0/3
FastEthernet0/4
FastEthernet0/5
FastEthernet0/6
FastEthernet0/7
FastEthernet0/8
FastEthernet0/9
16:40:28 Temp$

Kind regards

robert


--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestprac...

Jack Bauer

5/18/2009 3:02:00 PM

0

Douglas Seifert wrote:
> Maybe something like this:
> irb> a.sort_by{|s| n,i = s.split('/'); [n, i.to_i]}

Thanks to both of you guys. The one I quoted above looks similar to what
I was doing, I just thought it wasn't working because I'm using
pagination and it's ordering each page rather than the whole result and
then paginating.
--
Posted via http://www.ruby-....

Rob Biedenharn

5/18/2009 3:38:00 PM

0


On May 18, 2009, at 10:40 AM, Robert Klemme wrote:

> 2009/5/18 Jack Bauer <realmadrid2727@yahoo.es>:
>> I'm trying to sort some strings containing numbers. The strings
>> themselves can't be changed (they're items being pulled from a DB.)
>> This
>> is an example of some of the things I need to sort. First is how I
>> wanted them sorted:
>>
>> FastEthernet0/1
>> FastEthernet0/10
>> FastEthernet0/11
>> FastEthernet0/12
>> FastEthernet0/13
>> FastEthernet0/2
>> FastEthernet0/3
>> FastEthernet0/4
>> FastEthernet0/5
>> FastEthernet0/6
>> FastEthernet0/7
>> FastEthernet0/8
>> FastEthernet0/9
>> ...
>>
>> I need to get it like this:
>> FastEthernet0/1
>> FastEthernet0/2
>> FastEthernet0/3
>> FastEthernet0/4
>> FastEthernet0/5
>> FastEthernet0/6
>> FastEthernet0/7
>> FastEthernet0/8
>> FastEthernet0/9
>> FastEthernet0/10
>> FastEthernet0/11
>> FastEthernet0/12
>> FastEthernet0/13
>>
>> Then they could turn into FastEthernet1/1, etc. Also, the name
>> doesn't
>> really matter as it could have FastEthernet, another name, or none at
>> all and just be 0/1 or whatever.
>>
>> I'm guessing something like a regex to strip non-numbers so
>> FastEthernet0/1 becomes 01 then sort numerically, but that wouldn't
>> help
>> if I have FastEthernet0/1, GigabitEthernet0/1, and FastEthernet0/2
>> since
>> it would come out in an incorrect order (01, 01, 02 instead of 01,
>> 02,
>> 01 because of the F and G alphabetical sort.)
>>
>> Any ideas of the best way to go about this?
>
> 16:40:24 Temp$ cat srt.rb
> puts DATA.sort_by {|s| s.scan(/\d+/).map {|x| x.to_i} }
<snip/>
>
> Kind regards
>
> robert
> --
> remember.guy do |as, often| as.you_can - without end
> http://blog.rubybestprac...

If you do need to consider things like "FastEthernet..." v.
"GigabitEthernet...", then perhaps you want something like this which
breaks the original string into digits and non-digits and converts the
digits to be integers.

puts DATA.sort_by {|s| s.scan(/\d+|\D+/).map {|x| x =~ /\d+/ ?
x.to_i : x } }

-Rob

Rob Biedenharn http://agileconsult...
Rob@AgileConsultingLLC.com

Robert Klemme

5/18/2009 4:58:00 PM

0

On 18.05.2009 17:37, Rob Biedenharn wrote:

> If you do need to consider things like "FastEthernet..." v.
> "GigabitEthernet...", then perhaps you want something like this which
> breaks the original string into digits and non-digits and converts the
> digits to be integers.
>
> puts DATA.sort_by {|s| s.scan(/\d+|\D+/).map {|x| x =~ /\d+/ ?
> x.to_i : x } }

Good point! Here's an interesting variant:

puts DATA.sort_by {|s| s.scan(/(\d+)|\D+/).map { $1 ? $1.to_i : $& } }

Kind regards

robert


--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestprac...

Rob Biedenharn

5/19/2009 12:55:00 AM

0


On May 18, 2009, at 1:01 PM, Robert Klemme wrote:

> On 18.05.2009 17:37, Rob Biedenharn wrote:
>
>> If you do need to consider things like "FastEthernet..." v.
>> "GigabitEthernet...", then perhaps you want something like this
>> which breaks the original string into digits and non-digits and
>> converts the digits to be integers.
>> puts DATA.sort_by {|s| s.scan(/\d+|\D+/).map {|x| x =~ /\d+/ ?
>> x.to_i : x } }
>
> Good point! Here's an interesting variant:
>
> puts DATA.sort_by {|s| s.scan(/(\d+)|\D+/).map { $1 ? $1.to_i : $& } }
>
> Kind regards
>
> robert
> --
> remember.guy do |as, often| as.you_can - without end
> http://blog.rubybestprac...

Interesting, but "wrong" in that it doesn't sort the way the OP wanted.
Actually, since all the regexp applications have been applied by #scan
before the #map happens, the values of $1 and $& are effectively
constants and no sorting happens at all.

However, that did inspire me to make my version a little better.

puts DATA.sort_by {|s| s.scan(/(\d+)|(\D+)/).map {|(n,s)| s ||
n.to_i } }

I'd rather make the variables local than invoke the Perlish Regexp
globals (even if they did were assigned in the block the way you
expected). It could be even more readable if (n,s) were replaced with
(digits,nondigits), but it looks OK to me with n and s.

-Rob

Rob Biedenharn http://agileconsult...
Rob@AgileConsultingLLC.com


Robert Klemme

5/19/2009 6:14:00 AM

0

On 19.05.2009 02:55, Rob Biedenharn wrote:
> On May 18, 2009, at 1:01 PM, Robert Klemme wrote:
>
>> On 18.05.2009 17:37, Rob Biedenharn wrote:
>>
>>> If you do need to consider things like "FastEthernet..." v.
>>> "GigabitEthernet...", then perhaps you want something like this
>>> which breaks the original string into digits and non-digits and
>>> converts the digits to be integers.
>>> puts DATA.sort_by {|s| s.scan(/\d+|\D+/).map {|x| x =~ /\d+/ ?
>>> x.to_i : x } }
>> Good point! Here's an interesting variant:
>>
>> puts DATA.sort_by {|s| s.scan(/(\d+)|\D+/).map { $1 ? $1.to_i : $& } }

> Interesting, but "wrong" in that it doesn't sort the way the OP wanted.
> Actually, since all the regexp applications have been applied by #scan
> before the #map happens, the values of $1 and $& are effectively
> constants and no sorting happens at all.

Aaargh! Yes, you are completely right.

> However, that did inspire me to make my version a little better.
>
> puts DATA.sort_by {|s| s.scan(/(\d+)|(\D+)/).map {|(n,s)| s ||
> n.to_i } }
>
> I'd rather make the variables local than invoke the Perlish Regexp
> globals (even if they did were assigned in the block the way you
> expected). It could be even more readable if (n,s) were replaced with
> (digits,nondigits), but it looks OK to me with n and s.

Absolutely agree, I try to use local variables whenever possible.
Although I recently learned that $1 etc. are local to the current stack
frame! I did not knew that before and it certainly makes their use a
lot safer.

Thanks for catching my mistake!

Kind regards

robert

--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestprac...

Lars Christensen

5/19/2009 12:14:00 PM

0

On Mon, May 18, 2009 at 4:26 PM, Jack Bauer <realmadrid2727@yahoo.es> wrote:
> I'm trying to sort some strings containing numbers.

http://sourcefrog.net/projects/natsort...

Jack Bauer

5/19/2009 3:24:00 PM

0

You guys are great. I went with Bob's (pick one, hah) since it ended up
being moderately faster than the method I was originally using.
--
Posted via http://www.ruby-....