Help for this page

Select Code to Download


  1. or download this
     if ( /^Subject:\D+(\d+)/ ){
    # if you can be sure of the '#' before the digits, use this
    ...
          next;
      }     # if /subject
    ...
    
  2. or download this
    if ( /\s*Out Comments\s*(.*)$/ ) {
      push @out_comments, $1;
    ...
      }
      next;
    }   # if /Out Comments/
    
  3. or download this
    $output_str = "@subject[$j];@failed[$j];@monthi[$j]/@dayi[$j]/@yeari[$
    +j];@routerval[$j];" .
              "@tag[$j];@montho[$j]/@dayo[$j]/@yearo[$j];@lotCode[$j];@com
    +mentso[$j]\n";
    ...
        
    print OUTPUT $output_str;
      print $output_str;