in reply to alphabetize a hash ignoring upper/lower cases
(note: didn't test the code snippet, but confident it should work)foreach $orf (sort {lc($mips{$a}) cmp lc($mips{$b})} keys %mips) { push @mips, $mips{$orf}; }
# Under Construction
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: alphabetize a hash ignoring upper/lower cases
by halley (Prior) on May 11, 2003 at 12:07 UTC |