in reply to grep for array-of-strings from an array-of-strings
#!/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:
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)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: grep for array-of-strings from an array-of-strings
by diotalevi (Canon) on Apr 10, 2003 at 00:41 UTC |