Help for this page

Select Code to Download


  1. or download this
    my $regex = "(";
    foreach (@array2) {
      $regex .= $_ . "|";
    }
    $regex .= ")";
    
  2. or download this
    my $regex = join '|', @array2;
    
  3. or download this
    my $regex = join '|', map quotemeta, @array2;