in reply to Help with Sorting

my @sorted_keys = sort { $hash{$a}{current}[0] <=> $hash{$b}{current}[0] } keys %hash;

------
We are the carpenters and bricklayers of the Information Age.

Then there are Damian modules.... *sigh* ... that's not about being less-lazy -- that's about being on some really good drugs -- you know, there is no spoon. - flyingmoose

I shouldn't have to say this, but any code, unless otherwise stated, is untested

Replies are listed 'Best First'.
Re^2: Help with Sorting
by ChrisR (Hermit) on Jul 13, 2004 at 19:26 UTC
    Thanks, that's great!