Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: A Case with 5 Var's

by dorward (Curate)
on Jan 25, 2007 at 10:42 UTC ( [id://596445]=note: print w/replies, xml ) Need Help??


in reply to A Case with 5 Var's

Use a hash instead of five scalars. Then you can do:

my @found; foreach my $field_name (qw/name vorname plz tel tel49/) { push(@found, $field_name) if ($my_hash{$field_name}); }

(Untested)

That will give you an array of all the fields that are set. This may or may not be helpful - you didn't say what you planned to do with the results.

Replies are listed 'Best First'.
Re^2: A Case with 5 Var's
by Fletch (Bishop) on Jan 25, 2007 at 13:36 UTC

    Or more succinctly:

    my @found = grep exists $my_hash{ $_ }, qw( name vorname plz tel tel49 + );

    Update: Good point below. Omit the exists if that's the desired behavior. MENTAL NOTE: NO POSTING OR UPDATING NODES BEFORE CAFFEINE TAKES EFFECT.

      The original code doesn't consider an empty string to be "found", but exists will.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-16 14:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found