- or download this
example 1: blah (foobar) blah
...
lots of lines
of data
bar) blah
- or download this
my $regex_string = join '|', @list_patterns;
...
if ( /($regex_string)/is ) {
# got a match...
}
- or download this
my $list_regex = qr/($regex_string)/is;
...
if ( /$list_regex/ ) {
...