spanner,
In the spirit of TIMTOWTDI, I provide the following code:
#!/usr/bin/perl -w use strict; my @largeArray; $largeArray[0] = "this is a test"; $largeArray[1] = "this is another test"; $largeArray[2] = "that is another test"; $largeArray[3] = "test this is another"; my @searchCriteria; $searchCriteria[0] = "another"; $searchCriteria[1] = "test"; my $match_code = join(' and ', map "\$_[0] =~ /\Q$_\E/", @searchCriter +ia ); my $matcher = eval "sub { $match_code }; "; my @newArray = grep $matcher->($_), @largeArray; print "$_\n" foreach(@newArray);

Let me explain my code as it may not appear to be self-explanatory:

  • my $match_code = a scalar variable that we will be building a sub-routine in
  • my $matcher = a way to evaluate the sub easily
  • The grep pulls out the matching entries from @largeArray

    I would be interested in seeing how this compares in a benchmark with your real data compared to some of the solutions others have provided.

    Cheers - L~R

    Update: Some great (cosmetic as well as performance) code changes as pointed out by diotalevi in the CB (and below)


    In reply to Re: grep for array-of-strings from an array-of-strings by Limbic~Region
    in thread grep for array-of-strings from an array-of-strings by spanner

    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.