What does "0 but true" mean in Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T01:28:47Zhttp://stackoverflow.com/feeds/question/129945http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl16What does "0 but true" mean in Perl?jkramer2008-09-24T21:00:46Z2008-10-09T13:51:37Z
<p>Can someone explain what exactly the string "0 but true" means in Perl? As far as I understand, it equals zero in an integer comparison, but evaluates to true when used as a boolean. Is this correct? Is this a normal behavior of the language or is this a special string treated as a special case in the interpreter?</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/129970#1299706Answer by Daniel Papasian for What does "0 but true" mean in Perl?Daniel Papasian2008-09-24T21:04:10Z2008-09-24T21:04:10Z<p>In an integer context, it evaluates to 0 (the numeric part at the beginning of the string) and is zero. In a scalar context, it's a non-empty value, so it is true.</p>
<p>if (int("0 but true")) { print "zero"; }</p>
<p>(no output)</p>
<p>if ("0 but true") { print "true"; }</p>
<p>(prints true)</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/129977#1299772Answer by andy for What does "0 but true" mean in Perl?andy2008-09-24T21:05:40Z2008-09-24T21:05:40Z<p>When you want to write a function that returns either an integer value, or <em>false</em> or <b>undef</b> (i.e. for the error case) then you have to watch out for the value zero. Returning it is false and shouldn't indicate the error condition, so returning "0 but true" makes the function return value true while still passing back the value zero when math is done on it.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/129986#12998620Answer by Chris Jester-Young for What does "0 but true" mean in Perl?Chris Jester-Young2008-09-24T21:06:27Z2008-09-24T21:06:27Z<p>It's normal behaviour of the language. Quoting the <code>perlsyn</code> manpage:</p>
<blockquote>
<p>The number 0, the strings ’0’ and ’’, the empty list "()", and "undef"
are all false in a boolean context. All other values are true. Negation
of a true value by "!" or "not" returns a special false value.
When evaluated as a string it is treated as ’’, but as a number, it is
treated as 0.</p>
</blockquote>
<p>Because of this, there needs to be a way to return 0 from a system call that expects to return 0 as a (successful) return value, and leave a way to signal a failure case by actually returning a false value. <code>"0 but true"</code> serves that purpose.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/130000#130000-1Answer by rofly for What does "0 but true" mean in Perl?rofly2008-09-24T21:09:07Z2008-09-24T21:09:07Z<p>Essentially, if 0 is your desired output, use 0 but true. Its completely unnecessary, though, as you can just just reverse the result with a simple exclamation point.</p>
<p>At my University we have a fair amount of Perl scripts running just about everything and I very rarely see 0 but true.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/130027#13002718Answer by moritz for What does "0 but true" mean in Perl?moritz2008-09-24T21:13:02Z2008-09-24T21:13:02Z<p>Additionally to what others said, <code>"0 but true"</code> is special-cased in that it doesn't warn in numeric context:</p>
<pre><code>$ perl -wle 'print "0 but true" + 3'
3
$ perl -wle 'print "0 but crazy" + 3'
Argument "0 but crazy" isn't numeric in addition (+) at -e line 1.
3
</code></pre>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/130043#1300432Answer by raldi for What does "0 but true" mean in Perl?raldi2008-09-24T21:18:30Z2008-10-09T13:51:37Z<p>See also the Stack Overflow question about <a href="http://stackoverflow.com/questions/125265/how-does-perl-6-evaluate-truthiness">the way Perl 6 handles this</a>.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/130044#1300440Answer by Frosty for What does "0 but true" mean in Perl?Frosty2008-09-24T21:18:35Z2008-09-24T21:18:35Z<p>"0 but true" is a string just like any other but because of perl's syntax it can serve a useful purpose, namely returning integer zero from a function without the result being "false"(in perl's eyes).</p>
<p>And the string need not be "0 but true". "0 but false" is still "true"in the boolean sense.</p>
<p>consider:</p>
<pre><code>if(x)
for x: yields:
1 -> true
0 -> false
-1 -> true
"true" -> true
true -> true
"false" -> true
false -> false # notice the quotes
"0 but true" ->true #
int("0 but true") ->false
</code></pre>
<p>The upshot of all of this is you can have:</p>
<pre><code>sub find_x()
</code></pre>
<p>and have this code be able to print "0" as its output:</p>
<pre><code>if($x = find_x)
{
print int($x) . "\n";
}
</code></pre>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/130139#1301393Answer by Jon Ericson for What does "0 but true" mean in Perl?Jon Ericson2008-09-24T21:39:11Z2008-09-24T21:39:11Z<p><strong>0</strong> means false in Perl (and other languages related to C). For the most part, that's a reasonable behavior. Other languages (Lua for instance) treat <strong>0</strong> as true and provide another token (often <strong>nil</strong> or <strong>false</strong>) to represent a non-true value. </p>
<p>One case where the Perl way doesn't work so well is when you want to return either a number or, if the function fails for some reason, a false value. For instance, if you write a function that reads a line from a file and returns the number of characters on the line. A common usage of the function might be something like:</p>
<pre><code>while($c = characters_in_line($file)){
...
};
</code></pre>
<p>Notice that if the number of characters on a particular line is 0, the <strong>while</strong> loop will end before the end of the file. So the <strong>characters_in_line</strong> function should special case 0 characters and return <strong>'0 but true'</strong> instead. That way the function will work as intended in the <strong>while</strong> loop, but also return the correct answer should it be used as a number.</p>
<p>Note that this isn't a built in part of the language. Rather it takes advantage of Perl's ability to interpret a string as a number. So other stings are sometimes used instead. <strong>DBI</strong> uses <strong>"0E0"</strong>, for instance. When evaluated in numeric context, they return <strong>0</strong>, but in boolean context, <strong>false</strong>.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/130214#1302146Answer by Andy Lester for What does "0 but true" mean in Perl?Andy Lester2008-09-24T21:56:35Z2008-09-24T21:56:35Z<p>You may also see the string <a href="http://www.google.com/codesearch?q=0E0" rel="nofollow">"0E0" used in Perl code</a>, and it means the same thing, where 0E0 just means 0 written in exponential notation.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/131874#1318740Answer by kixx for What does "0 but true" mean in Perl?kixx2008-09-25T07:16:07Z2008-09-25T07:16:07Z<p>Another example of "0 but true":</p>
<p>The DBI module uses "0E0" as a return value for UPDATE or DELETE queries that didn't affect any records. It evaluates to true in a boolean context (indicating that the query was executed properly) and to 0 in a numeric context indicating that no records were changed by the query.</p>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/145680#1456800Answer by jkramer for What does "0 but true" mean in Perl?jkramer2008-09-28T11:24:13Z2008-09-28T11:24:13Z<p>I just found proof that the string "0 but true" is actially built into the interpreter, like some people here already answered:</p>
<pre><code>$ strings /usr/lib/perl5/5.10.0/linux/CORE/libperl.so | grep -i true
Perl_sv_true
%-p did not return a true value
0 but true
0 but true
</code></pre>
http://stackoverflow.com/questions/129945/what-does-0-but-true-mean-in-perl/153864#1538640Answer by Kyle for What does "0 but true" mean in Perl?Kyle2008-09-30T16:31:05Z2008-09-30T16:31:05Z<p><p>For a list of other "zero but true" values, see <A href="http://perlmonks.org/?node_id=464548" rel="nofollow">this poll at Perlmonks</a></p>