G'day richard.sharpe,
$var ?= "something" : "something else";
I suspect something along these lines would do what you want using existing syntax:
$var = ("something else", "something")[!!$var];
Some examples:
$ perl -E 'my $x; $x = (0,1)[!!$x]; say $x'
0
$ perl -E 'my $x = ""; $x = (0,1)[!!$x]; say $x'
0
$ perl -E 'my $x = "X"; $x = (0,1)[!!$x]; say $x'
1
From "Re^2: RFC: "assignary" operator ?= :":
$var1 ?= die "ERROR: \$var1 already set." : $var2;
You could do something rather exotic like:
$ perl -E 'my $x = ""; $x = (42, $x && die "Set: $x")[!!$x]; say $x'
42
$ perl -E 'my $x = "X"; $x = (42, $x && die "Set: $x")[!!$x]; say $x'
Set: X at -e line 1.
But ask yourself:
-
Do you fully understand what's happening with that code?
-
Will the next maintainer fully understand what's happening with that code?
-
Wouldn't a simple if/else block be easier to write, read, understand and maintain?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.