I am unsure about what you intend. Some code below.
I highly recommend against using experimental features except for "fun code".
#!/usr/bin/perl use strict; use warnings; my $VAR1 = [ '11', '14' ]; #create a hash... my %owner_grouprights = map{$_=>1}@$VAR1; if ($owner_grouprights{'11'}) { print "test3-> 11 exists as a groupright\n"; } # you say: "the big deal -- if it only would work" WHAT?? ### what do you expect??? if (grep{/4|5|6|7|8|9|10|11|12/} keys (%owner_grouprights)) { print "test2->some number exists as a groupright\n"; #11 exists } # with loop my $testarrorig = '4|5|6|7|8|9|10|11|12'; my @testarr = split( /\|/, $testarrorig ); foreach my $tst ( @testarr ) { if (exists $owner_grouprights{$tst}) { print "$tst hit!\n"; } } __END__ test3-> 11 exists as a groupright test2->some number exists as a groupright 11 hit!
Update: I am very circumspect about smart match. Sometimes this critter is too smart! And produces unexpected results. I don't see the need for it in the above code.

In reply to Re: smartmatch with multiple search values by Marshall
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.