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?

link|improve this question

7  
It might help those familiar with Perl, but unfamiliar with C#, if you explain what the ?? operators does. – pavium Dec 12 '09 at 2:00
1  
@pavium: Here's a link to the MSDN documentation on the ?? operator: msdn.microsoft.com/en-us/library/ms173224.aspx – Adam Bellaire Dec 14 '09 at 12:21
feedback

4 Answers

up vote 16 down vote accepted

As of 5.10 there is the // operator, which is semantically equivalent if you consider the concept of undef in Perl to be equivalent to the concept of null in C#.

Example A:

my $a = undef;
my $b = $a // 5;  # $b = 5;

Example B:

my $a = 0;
my $b = $a // 5;  # $b = 0;

EDIT: I note that the code syntax highlighter hates this operator.

link|improve this answer
yes, I automatically thought of undef as equivalent of NULL thanks – Karel Bílek Dec 12 '09 at 2:11
2  
The pre-5.10 idiom is just defined($a) ? $a : $b, which does the job and reads clearly enough. – hobbs Dec 12 '09 at 2:13
hobbs: yeah, but I would have to write it 2 times (which is not the same, when it's, for example, a call to subroutine) – Karel Bílek Dec 12 '09 at 2:18
1  
btw, I really like that my premise "when the feature is nice, it's probably in perl too" still holds :) – Karel Bílek Dec 12 '09 at 2:19
feedback

Actually, the short-circuit OR operator will also work when evaluating undef:

my $b = undef || 5;  # $b = 5;

However, it will fail when evaluating 0 but true:

my $b = 0 || 5;  # $b = 5;
link|improve this answer
feedback

As Adam says, Perl 5.10 has the // operator that tests its lefthand operator for defined-ness instead of truth:

 use 5.010;

 my $value = $this // $that;

If you are using an earlier version of Perl, it's a bit messy. The || won't work:

 my $value = $this || $that;

In that case, if $this is 0 or the empty string, both of which are defined, you'll get $that. To get around that, the idiom is to use the conditional operator so you can make your own check:

 my $value = defined( $this ) ? $this : $that;
link|improve this answer
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.

link|improve this answer
well, you didn't answer me, but thanks to the page I realised my question was a little bit off and I can just use simple || (I put it as a separate answer) – Karel Bílek Dec 12 '09 at 2:01
no. I am actually wrong – Karel Bílek Dec 12 '09 at 2:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.