Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: "Or" in Array

by injunjoel (Priest)
on Jul 24, 2008 at 00:20 UTC ( [id://699735]=note: print w/replies, xml ) Need Help??


in reply to "Or" in Array

Greetings, You can use grep to see if the value is in there. For example...
#!/usr/bin/perl -w use strict; #make up some data my @arr1 = 1 .. 100; my @arr2 = 0 .. 300; my @arr3 = reverse(@arr1); my @arr4 = 5 .. 10; #test it. if(grep($_ == 0, (@arr1,@arr2,@arr3,@arr4))){ print "Found it!"; }else{ print "no dice!"; }
this prints
Found it!


-InjunJoel
"I do not feel obliged to believe that the same God who endowed us with sense, reason and intellect has intended us to forego their use." -Galileo

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-24 12:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found