in reply to Re^4: Advance Sorting
in thread Advance Sorting

 
@sorted = sort { $a->{ID} cmp $b->{ID} # alphanum asc or $b->{Score} <=> $a->{Score} # num. + desc } @entry

See sort !

Cheers Rolf

(addicted to the Perl Programming Language)