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