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

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

by pvaldes (Chaplain)
on Aug 27, 2012 at 13:37 UTC ( [id://989987]=note: print w/replies, xml ) Need Help??


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

my @array = ("linux", "milinus","Windows","windows","Linux"); foreach (@array){ if (/((linux|Windows))/i){ print "This is $1 VM" . "\n" } else { print "no idea" . "\n" } }

... mmmh, or even:

foreach (@array){/((linux|Windows))/i ? print "This is $1 VM\n": print "no idea\n"}

(in fact you don't need an array for this)

print "THIS is $^O\n";

Therefore you could still eliminate two or three characters:

foreach (@array){/(($^O|Windows))/i ? print "This is $1 VM\n": print "no idea\n"}

Replies are listed 'Best First'.
Re^2: Short and easy way to write if...elsif syntax
by slayedbylucifer (Scribe) on Aug 27, 2012 at 16:58 UTC
    thank you very much everyone for your time. I will be learning quite a few Perl feature which were discussed in this thread. thanks again.

Log In?
Username:
Password:

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

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

    No recent polls found