I started to really like C#'s ?? operator. And I am quite used to the fact, that where there is something handy in some language, it's most probably in Perl too.
However, I cannot find ?? equivalent in Perl. Is there any?
|
I started to really like C#'s ?? operator. And I am quite used to the fact, that where there is something handy in some language, it's most probably in Perl too. However, I cannot find ?? equivalent in Perl. Is there any?
| |||||||||
feedback
|
|
As of 5.10 there is the Example A:
Example B:
EDIT: I note that the code syntax highlighter hates this operator. | |||||||||||||
feedback
|
|
Actually, the short-circuit OR operator will also work when evaluating undef:
However, it will fail when evaluating 0 but true:
| |||
|
feedback
|
|
As Adam says, Perl 5.10 has the
If you are using an earlier version of Perl, it's a bit messy. The
In that case, if
| |||
|
feedback
|
|
Not that I know of. Perl isn't really a big user of the null concept. It does have a test for whether a variable is undefined. No special operator like the ?? though, but you can use the conditional ?: operator with an undef test and get pretty close. And I don't see anything in the perl operator list either. | |||||
feedback
|