Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
                print STDERR "Didn't match: $line\n";
        }
    }
    
  2. or download this
    my @matches = grep { m/$regex/ } @lines;
    ($_) = m/$regex/ foreach @matches;