is not good enough for you. Then you may get some help from CPAN:if ($item1 eq $item3 or $item2 eq $item3) { ## do something }
use strict; use warnings; use Perl6::Junction qw(any); my ($item1, $item2, $item3) = qw(gem camel snake); if (any($item1, $item2, $item3) eq 'camel') { print "Code away!\n"; } else { print "I would rather watch Gilligan's Island\n"; }
In reply to Re: testing more than one item for equality
by fenLisesi
in thread testing more than one item for equality
by jonnyfolk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |