Help for this page

Select Code to Download


  1. or download this
    my $pattern = join '|',
                  map quotemeta,
    ...
    if ($country =~ /^(?:$pattern)$/) {
       print "True\n"
    }
    
  2. or download this
    my ($pattern) = map qr/^(?:$_)$/,
                    join '|',
    ...
    if ($country =~ $pattern) {
       print "True\n"
    }