- or download this
my @words = qw( SA NV LTD CO LLC );
- or download this
my ($re) = map qr/$_/i, join '|', map quotemeta, @words;
- or download this
use Regexp::List qw( );
my $re = Regexp::List->new(modifiers => 'i')->list2re(@words);
- or download this
while (<>) {
chomp;
...
print("$_$/");
}