in reply to What are all the false values in Perl ((conditional, boolean, whitespace, unprintable characters)
I believe an empty string, the undefined value, an empty list/array and the number zero (numeric or "0") will return a false value. A non-empty string, an array with 1 or more elements, or a non-zero number will return a true value.
If you're seeing a zero, be sure it's not a string with other characters besides a zero in it. I believe spaces or other characters before or after it may cause the variable to be evaluated as a numeric zero when you're doing math, but since there's more than a number in the string, a boolean test will look at it from a string point of view, and will return 'true' since it's a non-empty string.
If $script::debug is being set to a numeric zero (or, better, undef), there's no reason the test you're describing should return a true value. I'd like to see how you're setting $script::debug.
(Updated 'list' vs. 'array'.)
|
---|
Replies are listed 'Best First'. | |
---|---|
RE (tilly) 2: What are all the false values in Perl ((conditional
by tilly (Archbishop) on Sep 22, 2000 at 22:10 UTC | |
by dchetlin (Friar) on Sep 23, 2000 at 00:31 UTC | |
by tye (Sage) on Sep 23, 2000 at 00:55 UTC | |
by Adam (Vicar) on Sep 23, 2000 at 01:13 UTC | |
by tye (Sage) on Sep 23, 2000 at 01:20 UTC | |
| |
RE: Re: What are all the false values in Perl ((conditional
by japhy (Canon) on Sep 23, 2000 at 01:09 UTC |
In Section
Seekers of Perl Wisdom