http://qs321.pair.com?node_id=308189


in reply to Sorted tied hash wierdness

You're getting too reference-happy. $_->[0] isn't the same as $_[0] -- the former treats $_ as an array ref, and takes the 0th element of that, while the second takes the 0th element of the @_ array. In this case, it's the latter you want. Change sub { $_->[0] <=> $_->[1] } to sub { $_[0] <=> $_[1] } and you'll have more luck.

perl -pe '"I lo*`+$^X$\"$]!$/"=~m%(.*)%s;$_=$1;y^`+*^e v^#$&V"+@( NO CARRIER'

Replies are listed 'Best First'.
Re: Re: Sorted tied hash wierdness
by genecutl (Beadle) on Nov 19, 2003 at 00:01 UTC
    You're absolutely right. Don't you hate it when you waste time on something that should be completely obvious? Thanks!