in reply to Re: Argument "" Isn't numeric in numeric eq (==)
in thread Argument "" Isn't numeric in numeric eq (==)

Yes I tried using eq, but the logic was getting too complex.
  • Comment on Re^2: Argument "" Isn't numeric in numeric eq (==)

Replies are listed 'Best First'.
Re^3: Argument "" Isn't numeric in numeric eq (==)
by AnomalousMonk (Archbishop) on Feb 10, 2014 at 15:35 UTC

    But did you try simply switching off warnings (in a suitably narrow scope, of course)? I.e.,
        no warnings;
    or
        no warnings qw(numeric);

    See warnings and perllexwarn.