Help for this page

Select Code to Download


  1. or download this
    INPUT: while (<IN>) {
     for my $match (@list) {
    ...
     }
     print;
    }
    
  2. or download this
    my $re = join "|", @list;
    while ... {
     print unless /$re/;
    }