Sorting numbers as strings

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?

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

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”]

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

2009/5/18 Jack B. [email protected]:

FastEthernet0/2
FastEthernet0/1
FastEthernet0/12
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

On 18.05.2009 17:37, Rob B. 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

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

FastEthernet0/12

FastEthernet0/10
FastEthernet0/1 becomes 01 then sort numerically, but that wouldn’t
puts DATA.sort_by {|s| s.scan(/\d+/).map {|x| x.to_i} }

Kind regards

robert

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

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 B. http://agileconsultingllc.com
[email protected]

On 19.05.2009 02:55, Rob B. wrote:

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

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

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.rubybestpractices.com/

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 B. http://agileconsultingllc.com
[email protected]

On Mon, May 18, 2009 at 4:26 PM, Jack B. [email protected]
wrote:

I’m trying to sort some strings containing numbers.

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

On Tue, May 19, 2009 at 5:24 PM, Jack B. [email protected]
wrote:

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.

Here is a variant similar to the other solutions you already got:

puts arr.sort_by {|s| s.split(/(\d+)/).each_with_index.map {|x,i|

i.odd? ? x.to_i : x }}

Works with Ruby 1.9.

/Johan H.

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.

On May 19, 2009, at 5:51 PM, Johan H. wrote:

i.odd? ? x.to_i : x }}

Works with Ruby 1.9.

/Johan H.

Are you trying to say that you believe some part of a solution that
Jack already accepted won’t work in Ruby 1.9? (Because they should
work fine.)

-Rob

Rob B. http://agileconsultingllc.com
[email protected]

On Wed, May 20, 2009 at 6:24 AM, Rob B.
[email protected] wrote:

-Rob

No, not at all. I tried to say that I believed my variant only
worked in 1.9 (and maybe 1.8.7). (I should have said “Only works with
Ruby 1.9”).

Sorry for the misunderstanding.

/Johan H.