Help for this page

Select Code to Download


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