Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Short and easy way to write if...elsif syntax

by LanX (Saint)
on Aug 28, 2012 at 08:58 UTC ( [id://990181]=note: print w/replies, xml ) Need Help??


in reply to Short and easy way to write if...elsif syntax

no need to repeat $_ =~ and just add next to avoid fall thru.

for ($given){ print "\nFOR($_):"; if (/abc/) { print "abc"} if (/def/) { print "def" ;next} if (/xyz/) { print "xyz" ;next} print "default"; }

more examples at Understanding the benefit of Given/When ...

Cheers Rolf

Log In?
Username:
Password:

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

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

    No recent polls found