Help for this page

Select Code to Download


  1. or download this
        print "mf" if grep { $line =~ $_ } @patterns;
    
  2. or download this
        foreach my $pattern (@patterns) {
            print "Match found\n" if $line =~ $pattern;
        }