Re: sort multiple hash reference by value

2009-05-12 Thread Rick
Chas. Owens wrote: On Tue, May 12, 2009 at 00:08, Rick wrote: snip It's very weird. I did verify that it is numeric values that I am comparing... also i am using warnings and strict as well and i get no warnings. can't figure out what's wrong. snip In cases like this it is best to try

Re: sort multiple hash reference by value

2009-05-11 Thread Chas. Owens
On Tue, May 12, 2009 at 00:08, Rick wrote: snip > It's very weird. I did verify that it is numeric values that I am > comparing... also i am using warnings and strict as well and i get no > warnings. > can't figure out what's wrong. snip In cases like this it is best to try to reproduce your prob

Re: sort multiple hash reference by value

2009-05-11 Thread Rick
John W. Krahn wrote: Rick wrote: John W. Krahn wrote: Rick wrote: should this not work? Based upon the code presented, it looks like the code it correct. I am finding out that Length is *NOT* being sorted correctly numerically... Of course we don't know the data stored in %in_array and %

Re: sort multiple hash reference by value

2009-05-10 Thread John W. Krahn
Rick wrote: John W. Krahn wrote: Rick wrote: should this not work? Based upon the code presented, it looks like the code it correct. I am finding out that Length is *NOT* being sorted correctly numerically... Of course we don't know the data stored in %in_array and %in_array_c so it is h

Re: sort multiple hash reference by value

2009-05-10 Thread Rick
John W. Krahn wrote: Rick wrote: should this not work? Based upon the code presented, it looks like the code it correct. I am finding out that Length is *NOT* being sorted correctly numerically... Of course we don't know the data stored in %in_array and %in_array_c so it is hard to say wh

Re: sort multiple hash reference by value

2009-05-10 Thread John W. Krahn
Rick wrote: should this not work? Based upon the code presented, it looks like the code it correct. I am finding out that Length is *NOT* being sorted correctly numerically... Of course we don't know the data stored in %in_array and %in_array_c so it is hard to say why it is not working th

sort multiple hash reference by value

2009-05-10 Thread Rick
should this not work? I am finding out that Length is *NOT* being sorted correctly numerically... for my $d ( sort { $in_array{$b} <=> $in_array{$a} } keys %in_array ){ printf "SERVER:%-20s %-20s\n",$d,$in_array{$d}; for my $key30 ( keys %{ $in_array_c{$d} } ) { for my