Scalar::Util's looks_like_number seems to be the commonly suggested way to determine whether a string is a number.
Why does it consider the string "0 but true" to be a number ?

use Scalar::Util 'looks_like_number';
print looks_like_number("0 but true");   # 1
link|improve this question

2  
See also: What does “0 but true” mean in Perl? – Simon Whitaker Mar 15 '11 at 21:21
2  
+1 This question is subtler than it appears at first blush, esp. given comments by @friedo. – pilcrow Mar 16 '11 at 5:04
4  
The string "0E0" another is like "0 but true". Instead of being hard coded it's a consequence of Perl's exponential notation. As a non-empty, non-zero string, it's true. As a number, it's 0. DBI uses it as a return value from things like execute to indicate that the SQL statement worked, but no rows were affected. – Schwern Mar 16 '11 at 8:58
Some more explanation: goo.gl/Jgwxk – miku Mar 17 '11 at 3:31
2  
After reading this, I have "0 but true" interest in learning Perl. – Epaga Mar 22 '11 at 8:00
show 1 more comment
feedback

4 Answers

up vote 36 down vote accepted

Because it's hardcoded in the Perl core to treat it as a number. This is a hack to make Perl's conventions and ioctl's conventions play together; from perldoc -f ioctl:

The return value of ioctl (and fcntl) is as follows:

if OS returns:      then Perl returns:

    -1              undefined value
     0              string "0 but true"
anything else       that number

Thus Perl returns true on success and false on failure, yet you can still easily determine the actual value returned by the operating system:

$retval = ioctl(...) || -1;
printf "System returned %d\n", $retval;

The special string "0 but true" is exempt from -w complaints about improper numeric conversions.

link|improve this answer
8  
Also used by msgctl, semctl, sysseek, and various CPAN modules. "treat it as a number" is misleading; "0 xxx", "foo", or "123profit" are also treated as numbers in numeric context; the special thing about "0 but true" is that it intentionally doesn't cause a warning. – ysth Mar 15 '11 at 21:21
You will find that the special defined null string return from things like the relops is also a valid number: perl -wle 'printf "%d\n", 4 > 5' produces 0 sans complaint. – tchrist Mar 16 '11 at 1:21
FWIW: The Perl DBI module uses '0E0' as a variation of '0 but true'. – Jonathan Leffler Mar 17 '11 at 7:02
That's not really a variant, it's just 0 expressed in exponential format. – geekosaur Mar 17 '11 at 7:16
feedback

The value 0 but true is a special case in Perl. Although to your mere mortal eyes, it doesn't look like a number, wise and all knowing Perl understands it really is a number.

It has to do with the fact that when a Perl subroutine returns a 0 value, it is assumed that the routine failed or returned a false value.

Imagine I have a subroutine that returns the sum of two numbers:

die "You can only add two numbers\n" if (not add(3, -2));
die "You can only add two numbers\n" if (not add("cow", "dog"));
die "You can only add two numbers\n" if (not add(3, -3));

The first statement won't die because the subroutine will return a 1. That's good. The second statement will die because the subroutine won't be able to add cow to dog.

And, the third statement?

Hmmm, I can add 3 to -3. I just get 0, but then my program will die even though the add subroutine worked!

To get around this, Perl considers 0 but true to be a number. If my add subroutine returns not merely 0, but 0 but true, my third statement will work.

But is 0 but true a numeric zero? Try these:

my $value = "0 but true";
print qq(Add 1,000,000 to it: ) . (1_000_000 + $value) . "\n";
print "Multiply it by 1,000,000: " . 1_000_000 * $value . "\n";

Yup, it's zero!

The index subroutine is a very old piece of Perl and existed before the concept of 0 but true was around. It is suppose to return the position of the substring located in the string:

index("barfoo", "foo");   #This returns 3
index("barfoo", "bar");   #This returns 0
index("barfoo", "fu");    #This returns ...uh...

The last statment returns a -1. Which means if I did this:

if ($position = index($string, $substring)) {
   print "It worked!\n";
}
else {
   print "If failed!\n";
}

As I normally do with standard functions, it wouldn't work. If I used "barfoo" and "bar" like I did in the second statement, The else clause would execute, but if I used "barfoo" and "fu" as in the third, the if clause would execute. Not what I want.

However, if the index subroutine returned 0 but true for the second statement and undef for the third statement, my if/else clause would have worked.

link|improve this answer
feedback

It's hard-coded in Perl's source code, specifically in Perl_grok_number in numeric.c. (Look at line 747.)

Reading that code I discovered that the string "infinity" (case insensitive) passes the looks_like_number test too. I hadn't known that.

link|improve this answer
1  
Some C libraries use "Infinity" (or "+Infinity" or "-Infinity") as the stringification of floating-point infinity rather than variations of "Inf". – hobbs Mar 15 '11 at 22:40
feedback

Things that are false:

  • "".
  • "0".
  • Things that stringify to those.

"0 but true" is not one of those, so it's not false.

Furthermore, Perl returns "0 but true" where a number is expected in order to signal that a function succeeded even though it returned zero. sysseek is an example of such a function. Since the value is expected to be used as a number, Perl is coded to consider it to be a number. As a result, no warnings are issued when it's used as a number, and looks_like_number("0 but true") returns true.

Other "true zeroes" can be found at http://www.perlmonks.org/?node_id=464548.

link|improve this answer
3  
But that doesn't answer why looks_like_number( "0 but true" ) is true, while looks_like_number( "0 but foobar" ) is false. – friedo Mar 15 '11 at 21:09
@friedo, Perl doesn't return "0 but foobar" as a number. – ikegami Mar 15 '11 at 21:16
@friedo, Are you actually asking why Perl would need to return something that is zero, but evaluates to true? It's so you can easily evaluate if a function succeeded when zero is a possible return value. sysseek is an example. – ikegami Mar 15 '11 at 21:21
3  
No, I'm asking why 0 but true looks like a number but 0 but anything else does not. They'll all evaluate to 0 in numeric context. I know what 0 but true is for. – friedo Mar 16 '11 at 3:34
1  
@friedo, Why would "0 but anything else", "123abc", "foo bar", etc be numbers? – ikegami Mar 16 '11 at 11:21
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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