in reply to Length of String
If you want to print "0" instead of an empty string, you need to force it to be used as a number first:
or use the ternary operator (which also allows you to set values other than 1/0, if you want to):my $overwrite = (length($function)>1) + 0;
Note, though, that this is only useful for making printed output look the way you expect. The original value returned by > will work perfectly well for flow control purposes (e.g., in an if condition) without needing to be converted to a plain 0 first.my $overwrite = length($function)>1 ? 1 : 0;
1 Yes, a normal empty string is also evaluated as 0 when a number is expected, but, if warnings are active, you'll get an "argument isn't numeric" warning when doing so. The "special" value returned by false boolean operators does not generate this warning.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Length of String
by bigal_george (Acolyte) on Dec 30, 2019 at 17:25 UTC | |
by haukex (Archbishop) on Dec 30, 2019 at 18:54 UTC | |
by bigal_george (Acolyte) on Dec 30, 2019 at 20:29 UTC |