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

Re: using if-elsif-else

by monkey_boy (Priest)
on Dec 28, 2006 at 15:46 UTC ( [id://592067]=note: print w/replies, xml ) Need Help??


in reply to using if-elsif-else

lots of extra brackets there!, also, an "else" cannot have a conditional, so you need another "elsif", use "else" for a catchall at the end, ive fixed up your snippet below:
if ($name =~ /^derrick\b/i) { print $phnums{"derrick"}; } elsif ($name =~ /^juan\b/i) { print $phnums{"juan"}; } elsif ($name =~ /^kevin\b/i) { print $phnums{"kevin"}; } else { print "No such person!\n"; };



This is not a Signature...

Log In?
Username:
Password:

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

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

    No recent polls found