Help for this page

Select Code to Download


  1. or download this
    use strict; use warnings;
    
    ...
    open my $file, '<file1.txt' or die "$!";
    while( <$file> ) { next if /$regex/; print }
    close $file;