in reply to •Re^2: Sorting - lower to upper
in thread Sorting - lower to upper

Taking merlyn's advice into account, I'll change my answer;-)

--from above--

Don't forget about the Schwartzian Transform:
my %hash = qw/John 1 Bob 1 xavier 1 alice 1/; my @keys = map { (my $x = $_) =~ tr/a-zA-Z/A-Za-z/; $x } sort map { (my $x = $_) =~ tr/a-zA-Z/A-Za-z/; $x } keys %hash; print "@keys\n";
Will give you
alice xavier Bob John