The underscore (_) comes after the decimals and capital letters using perl's
cmp operator but before the lower case letters. If you'd like it to be before numbers, then simply create a custom sort by moving it before:
use strict;
use warnings;
my @foods = qw(abc abc1 abc2 abc_1 abc_2 abc01_1);
# Create a Custom Sort
my @sort_char_order = sort map {chr $_} (1..127);
# Move '_' to before '0' in your list;
my @your_char_order = map {$_ eq '0' ? ('_', '0') : $_ eq '_' ? () : $
+_} @sort_char_order;
my $sort_char_order = join '', @sort_char_order;
my $your_char_order = join '', @your_char_order;
my $trans_word = eval qq{
sub {
my \$param = shift;
\$param =~ tr/\Q$your_char_order\E/\Q$sort_char_order\E/;
return \$param;
}
};
# Sort by your custom definition
my @sorted_foods =
map { $_->[0] }
sort { $a->[1] cmp $b->[1] }
map { [ $_, $trans_word->($_) ] } @foods;
print join ' ', @sorted_foods;
# abc abc_1 abc_2 abc01_1 abc1 abc2
- Miller
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.