Help for this page

Select Code to Download


  1. or download this
    my $regex = join '|', @prims;
    while(<>){
      print "Found item in $_" if m/$regex/;
    }
    
  2. or download this
    my $regex = join '|', map quotemeta, @prims;