in reply to Argument "" Isn't numeric in numeric eq (==)
If you want blank entries to be 0, just make them so:
After that, all your ""'s become zeros, and == will behave just fine.# Consider all blank entries to be 0. foreach (@f) { $_ = 0 unless length $_; }
|
---|