Help for this page

Select Code to Download


  1. or download this
    while( my $line = <inFile> ) {
        chomp $line;
        next if $line !~ m/data\sto\s(.*?)\s*is/i;
        # ....the rest of the loop goes here...
    }