my $re_text = join '|', map {($_)} @countries; my $re = rx/$re_text/; #### while ( my $line = <$fh>) { chomp $line; my $found = ($line =~ /$re/); # Profit! }