[Israel.pm] Is there an operator like IN in perl
Richie Sevrinsky
richie at mamash.com
Wed Mar 4 05:18:34 PST 2009
Use grep as follows:
my @arr = (1,2,3,4,5);
if (grep($_ == 1, @arr))
I recommend reading "perldoc -f grep".
- Richie
Berler Chanan wrote:
> Hi All,
>
> I wonder why/or should I ask "if" there is an operator IN in perl.
> For example:
>
> my @arr = (1,2,3,4,5);
> if (1 in @arr)
> {
> # do something
> }
>
> The idea came to me when using SQL statement: select …. where element in (1,2,3,4,5)
> PS: the use of foreach and check is tooooooooo long for me ☺
>
> Thanks
> Chanan
>
> _______________________________________________
> Perl mailing list
> Perl at perl.org.il
> http://perl.org.il/mailman/listinfo/perl
>
More information about the Perl
mailing list