Allow numbers to be sorted separately from letters

Allow numbers to be sorted separately from letters.
This commit is contained in:
H. Peter Anvin 2007-11-29 17:10:04 -08:00
parent 540f903928
commit 52b4d6d7b0

View File

@ -401,7 +401,7 @@ sub indexsort {
} map { # transform array into list of 3-element lists
my $ientry = $idxmap{$_};
my $a = substr($$ientry[0],2);
$a =~ tr/A-Za-z//cd;
$a =~ tr/A-Za-z0-9//cd;
[$_, uc($a), substr($$ientry[0],0,2)]
} keys %idxmap;