Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried:

$var = false;
$var = FALSE;
$var = False;

None of these work. I get the error message

Bareword "false" not allowed while "strict subs" is in use.
share|improve this question
13  
You might want to start with my book Learning Perl. It's easier than guessing what to do until you get it right (monkeys, typewriters, and Hamlet, and all that). :) – brian d foy Jun 24 '09 at 17:30

4 Answers

up vote 129 down vote accepted

In Perl, the following evaluate to false in conditionals:

0
'0'
undef
''  # Empty scalar
()  # Empty list
('')

The rest are true. There are no barewords for true or false.

share|improve this answer
2  
@Robert Harvey: perl -le 'my $var = 0; print "False" unless($var);' – Alan Haggai Alavi Jun 24 '09 at 4:14
1  
@BlueWaldo: Yes, that works. $var will (IIRC) be either 0 or 1, in this case. – Chris Jester-Young Jun 24 '09 at 4:16
2  
Problem 1: An empty list is not false, since it's impossible to check if an list is true or false. An empty list in scalar context returns undef. – ikegami Apr 13 '11 at 20:40
2  
Problem 2: ('') and '' are the same value. I think you wanted to imply a list with an element that consists of an empty string (even though parens don't create lists), but as I've already mentioned, it's impossible to check if a list is true of false. – ikegami Apr 13 '11 at 20:42
3  
Problem 3: Objects with an overloaded boolean operator can also be false. – ikegami Apr 13 '11 at 20:43
show 8 more comments

Perl doesn't have a native boolean type, but you can use comparison of integers or strings in order to get the same behavior. Alan's example is a nice way of doing that using comparison of integers. Here's an example

my $boolean = 0;
if ( $boolean ) {
    print "$boolean evaluates to true\n";
} else {
    print "$boolean evaluates to false\n";
}

One thing that I've done in some of my programs is added the same behavior using a constant:

#!/usr/bin/perl

use strict;
use warnings;

use constant false => 0;
use constant true  => 1;

my $val1 = true;
my $val2 = false;

print $val1, " && ", $val2;
if ( $val1 && $val2 ) {
    print " evaluates to true.\n";
} else {
    print " evaluates to false.\n";
}

print $val1, " || ", $val2;
if ( $val1 || $val2 ) {
    print " evaluates to true.\n";
} else {
    print " evaluates to false.\n";
}

The lines marked in "use constant" define a constant named true that always evaluates to 1, and a constant named false that always evaluates by 0. Because of the way that constants are defined in Perl, the following lines of code fails as well:

true = 0;
true = false;

The error message should say something like "Can't modify constant in scalar assignment."

I saw that in one of the comments you asked about comparing strings. You should know that because Perl combines strings and numeric types in scalar variables, you have different syntax for comparing strings and numbers:

my $var1 = "5.0";
my $var2 = "5";

print "using operator eq\n";
if ( $var1 eq $var2 ) {
    print "$var1 and $var2 are equal!\n";
} else {
    print "$var1 and $var2 are not equal!\n";
}

print "using operator ==\n";
if ( $var1 == $var2 ) {
    print "$var1 and $var2 are equal!\n";
} else {
    print "$var1 and $var2 are not equal!\n";
}

The difference between these operators is a very common source of confusion in Perl.

share|improve this answer
4  
-1 ... please see c-faq.com/cpp/slm.html – Sinan Ünür Jun 24 '09 at 15:27
1  
use warnings; instead of #! perl -w – Brad Gilbert Jun 24 '09 at 17:25
5  
Using constants as a poor mans macros that way is dangerous. These code examples aren't equivalent: if ($exitstatus) { exit; } vs if ($exitstatus == true) { exit; }, which might not be obvious to a casual observer. (And yes, the last example is poor programming style, but that is beside the point). – Zano Nov 20 '09 at 1:59

The most complete and most concise answer I've come across is:

Anything that stringifies to the empty string or the string `0` is false. Everything else is true.

Therefore, the following values are false:

  • The empty string
  • Numerical value zero
  • An undefined value
  • An object with an overloaded boolean operator that evaluates one of the above.
  • A magical variable that evaluates to one of the above on fetch.

Keep in mind that an empty list literal evaluates to an undefined value in scalar context, so it evaluates to something false.

share|improve this answer
3  
you're my favorite Perl person on here! thanks for answering all my perl questions! – qodeninja Sep 14 '11 at 20:40

I recommend use boolean;. You have to install the boolean module from cpan though.

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.