Hi, I want to sort a hash based on the employee number;  I used a foreach
loop but it sorts the hash based on the ascii value.  How would I get it
to sort on integer values?


foreach $empNo (sort (keys(%empName))) {
    print "$empNo $empName{$empNo}\n";
}

--
Rob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to