- or download this
while (<>) {
chomp;
s/ //g;
tr/a-z/A-Z/;
} if (/^GRD/) {
- or download this
while ( ... ) { ... }
if ( ... ) { ... }
- or download this
while ( ... ) {
...
...
....
}
}
- or download this
@GRD = split /,"?|""?/; - or download this
close ARGV if eof; - or download this
my @GRD = split /,/;
warn "line $.: wrong number of attributes\n"
...
return if grep { $GRD eq $_ } @GRDF;
print "line $.: \"$GRD\" is invalid in column $col\n";
}