Help for this page

Select Code to Download


  1. or download this
    my @files = <*.txt>;
    undef $/;
    ...
       close ( FH );
       while ( $txt =~ m/(M[A-Z]{3}) /gs ) { print "  $1\n"; }
    }