Help for this page

Select Code to Download


  1. or download this
    while(<>) {
        if(/^PORNUM:\s*(\S+)/m) {
    ...
        }
        print;
    }
    
  2. or download this
    my %skip = map { $_ => 1 } 
      qw(PP22x43@.5 PC12x120/25);
    
  3. or download this
    while(<>) {
        next if /^PORNUM:\s*(\S+)/m and exists $skip{$1};
        print;
    }
    
  4. or download this
    while(<EXCLUDE>) {
        if(/^PORNUM:\s*(\S+)/) {
            $skip{$1} = 1;
        }
    }