in reply to Hashing: Argument "" isn't numeric in sort
Sounds like you've got an empty key in there. One fix might be to delete that slice, but you'd be better off figuring out how it got in there in the first place..
delete $hshOut{''}; foreach $keyOut (sort {$a <=> $b} keys %hshOut) { ... }
cheers,
J
|
---|