Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Hash sort again!!

by coolmichael (Deacon)
on Apr 26, 2001 at 12:52 UTC ( [id://75735]=note: print w/replies, xml ) Need Help??


in reply to Hash sort again!!

In addition to all the other suggestions, you could also try changing
sort {$a<=>$b} (keys (%sentence_count));
to
my @sortedkeys = sort keys %sentence_count;

sort is smart enough to figure out how to do the comparison for you. Once the array returned by keys is sorted, you need to assign it to another array. Sort won't change the order of the keys directly, but will return a new sorted array.

michael
the blue haired monk

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://75735]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-25 21:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found