Help for this page

Select Code to Download


  1. or download this
        foreach( keys %invalid ) {
            undef @tmp;
    ...
                next if $_ =~ m/$fields[$_]/;
            }
        }
    
  2. or download this
    RECORD: while( <INPUT_FEED> ) {
        ....
    ...
                next RECORD if ...;
            }
        }
    
  3. or download this
       next if $_ = /$fields[$_]/;
    
  4. or download this
        $PostCodeStrings{$fields[5]} =
            $PostCodeStrings{$fields[5]} .
    ...
            $fields[2] . "|" .
            $fields[1] . "|" .
            $fields[0] . "\n";
    
  5. or download this
        $PostCodeStrings{$fields[5]} .= 
            join( '|', @fields[4,5,3,2,1,0] ) . "\n";