Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: terrible code about array matching...

by jlongino (Parson)
on Nov 06, 2002 at 15:38 UTC ( [id://210763]=note: print w/replies, xml ) Need Help??


in reply to terrible code about array matching...

I'm not exactly sure what you're trying to do but if you're only trying to validate parameters, something like the following would work:
use strict; use warnings; my %valid = ( peace => 0, child => 1, free => 2, love => 3, enjoy => 4 ); my @test = qw(freely enjoy love); my @parms; for my $test (@test) { if (exists $valid{$test}) { push (@parms, $test); } else { print "\n\nSkipping bad argument '$test'!!!\n\n"; } } print "\n\nValid parms:\n"; print " ", pack('A8',$_), ": position: $valid{$_}\n" for @parms;
Update: After rereading a few times, I realize that the poster needs what chromatic suggested. /me finishes coffee before responding to anymore posts.

--Jim

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-19 14:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found