in reply to
Sorting data problem
<=>
is a numeric comparison operator. Use
cmp
instead, which sorts the strings alphabetically. If case is not important, use
{ lc($a) cmp lc($b) }
for your sort.
Comment on
Re: Sorting data problem
Select
or
Download
Code
In Section
Seekers of Perl Wisdom