Looks to me like you aren't really that interested in the order of the values in @owner_grouprights and instead just want to be able to easily check whether specific values are present or not. This is not a job for an array. You want a hash:
#!/usr/bin/env perl use strict; use warnings; use 5.010; # Don't really need the qw, since these are numbers, but the original # code explicitly made them strings, so whatever. my @owner_grouprights = qw( 11 14 ); my %rights_hash; $rights_hash{$_}++ for @owner_grouprights; if (exists $rights_hash{11}) { say "test3"; } for (4 .. 12) { if (exists $rights_hash{$_}) { say "test2"; last; # avoid duplicate messages if more than one is present } } # Or, alternately: if (grep /4|5|6|7|8|9|10|11|12/, keys %rights_hash) { say "test2 alt"; } # Note, though, that the two alternatives are not equivalent. The # first (if exists) only returns exact matches, while the second # (grep) also finds substring matches. So, e.g., 114 would match the # 'grep' version, but not the 'if exists' version. Adding begin/ # end-of-string anchors (^/$ or \A/\Z) to the 'grep' version's regex # will disallow partial matches if you want that, but don't want the # explicit 'for' loop. my $owner_grouprights = join( ' ', sort keys %rights_hash); my @testarr = (4 .. 12); for my $tst (@testarr) { if (exists $rights_hash{$tst}) { say "$tst hit!"; } else { say "$tst miss"; } }

In reply to Re: smartmatch with multiple search values by dsheroh
in thread smartmatch with multiple search values by toohoo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.