Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
#!/usr/bin/env perl
use warnings;
use 5.12.2;

my $c = 'f'; # could be a number too

if ( $c eq 'd' || $c == 9 ) {
    say "Hello, world!";
} 

What is the best way, to avoid the 'Argument "f" isn't numeric in numeric eq (==) at ./perl.pl line 7.'-warning?
I suppose in this case I could use "eq" two times, but that doesn't look good.

share|improve this question
I will use "eq". – sid_com Nov 9 '10 at 8:56

4 Answers

up vote 11 down vote accepted

Not sure why you want to avoid the warning. The warning is telling you that there's a potential problem in your program.

If you're going to compare a number with a string that contains unknown data, then you're either going to have to use 'eq' for the comparison or clean up the data in some way so that you know it looks like a number.

share|improve this answer
You're right in principal, however the question is: how would one disable the messages. Perls differentiation between string and numeric comparisons is annoying at best. It doesn't seem to matter if the comparison is done through '==' or 'eq' so one might as well turn the warning off. In my eyes Eugene Y's answer is the one that counts for this question. – Roman Geber Dec 14 '12 at 18:00
use Scalar::Util 'looks_like_number';    

if ( $c eq 'd' || ( looks_like_number($c) && $c == 9 ) ) {
    say "Hello, world!";
} 

You could also disable this category of warnings temporarily:

{
    no warnings 'numeric';
    # your code
}
share|improve this answer
It lacks one ')'; – sid_com Nov 9 '10 at 8:58
@sid_com: thanks, corrected. – eugene y Nov 9 '10 at 9:13
works fine. Thanks! Since I gotta use XMPP for debugging the permanent warnings are a very good reason to disable this kind for good. – Roman Geber Sep 27 '11 at 7:47

The obvious way to avoid a warning about comparing a non-numeric to a numeric is not to do it! Warnings are there for your benefit - they should not be ignored, or worked around.

To answer what is the best way you need to provide more context - i.e. what does $c represent, and why is it necessary to compare it do 'd' or 9 (and why not use $c eq '9')?

share|improve this answer
Because what if $c eq " 9" or "9.0" or "009"? Best to use the Scalar::Util 'looks_like_number'; as eugene stated above. – David W. Nov 9 '10 at 17:40
that's what I asked him to clarify! – Alnitak Nov 10 '10 at 0:36

Using a regular expression to see if that is a number:

if(($num=~/\d/) && ($num >= 0) && ($num < 10))
{
    # to do thing number 
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.