Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: searching for clear ways to overwrite the empty string

by Anonymous Monk
on Apr 19, 2016 at 17:08 UTC ( [id://1160907]=note: print w/replies, xml ) Need Help??


in reply to searching for clear ways to overwrite the empty string

s/^\z/?/ for $longvariablename;

Replies are listed 'Best First'.
Re^2: searching for clear ways to overwrite the empty string
by graff (Chancellor) on Apr 20, 2016 at 00:38 UTC
    That's neat -- and it could be done like this to make sure that both "undef" and "empty string" are handled without warnings:
    $_ //= "?" or s/^\z/?/ for ( $this_variable, $that_variable, $another_ +variable );
    (UPDATE: But I'm inclined to think that when there's a problem with too many long variable names, it might mean that those variable names really ought to be keys in a hash.)

    (updated again to fix the mis-typed operator in the snippet.)

      Parens not needed.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1160907]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-16 07:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found