Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: a proper sort

by eieio (Pilgrim)
on Mar 04, 2005 at 14:56 UTC ( [id://436586]=note: print w/replies, xml ) Need Help??


in reply to a proper sort

This may work:
my @pretty = sort { my @a = $a =~ /^(.+?)(\d*)$/; my @b = $b =~ /^(.+?)(\d*)$/; return ( $a[0] cmp $b[0] ) || ( $a[1] && $b[1] && $a[1] <=> $b[1] ) || ( $a[1] && 1 ) || ( $b[1] && -1 ); } @not_so_pretty;
I changed the regular expressions to ensure that the entire name is captured (^ and $). I also changed them such that words that aren't suffixed by numbers still match (\d*). Finally, although, I'm not sure if this is important for your situation, I changed them such that any characters before the number suffix are allowed (.+?). The return is more complicated since it now handles the case where the $a[1] or $b[1] may not be defined since the word doesn't contain a numeric suffix.

Update: go with dragonchild's approach which is more concise and clear. However, do consider if any words may contain number other than as a suffix and decide how you want to handle this case (my code sorts these alphabetically).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://436586]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-19 07:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found