Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Test if multiple variables are defined

by AnomalousMonk (Archbishop)
on Jun 25, 2013 at 17:50 UTC ( [id://1040636]=note: print w/replies, xml ) Need Help??


in reply to Test if multiple variables are defined

One More Way to Do It: grep:

>perl -wMstrict -le "my ($foo, $bar); my ($no_ws, $some_ws, $lotsa_ws) = ('no_ws', ' some_ws ', ' lotsa ws '); printf qq{'$_' } for $no_ws, $some_ws, $lotsa_ws; print ''; ;; s{ \A \s+ | \s+ \z }''xmsg for grep defined, $no_ws, $foo, $some_ws, $bar, $lotsa_ws; printf qq{'$_' } for $no_ws, $some_ws, $lotsa_ws; " 'no_ws' ' some_ws ' ' lotsa ws ' 'no_ws' 'some_ws' 'lotsa ws'

Update: However,  grep as used above has the disadvantage of creating an output list that may be the same size as the input list; Perl then has twice as much data to deal with.

The advantage of a looping statement like
    defined and s/^\s+|\s+$//g for LIST;
is that the elements of  LIST are operated on in place and no new list is created.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (9)
As of 2024-04-23 21:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found