Help for this page

Select Code to Download


  1. or download this
    # If we are reading in regexs.
    chomp( my @arry = <> );
    my $pattern = join('|', @arry);
    my $regex = qr/$pattern/;
    
  2. or download this
    # If we are reading in text strings.
    chomp( my @arry = <> );
    my $pattern = join('|', map quotemeta, @arry);
    my $regex = qr/$pattern/;