Help for this page

Select Code to Download


  1. or download this
    if($line=~/^Request:($rules)/i){
    
  2. or download this
    if($line=~/^Request:($rule)/i){
    
  3. or download this
    foreach (@rules ) {
        $rule = $_;
    
  4. or download this
    foreach my $rule (@rules)
    
  5. or download this
    use warnings;
    use strict;
    ...
    while (defined($line=$file->read())) {
        print $line if ($line=~/^Request:($rules_re)/i);
    }