Help for this page

Select Code to Download


  1. or download this
      while (<>) {
          chomp;
          s/ //g;
          tr/a-z/A-Z/;
          } if (/^GRD/) {
    
  2. or download this
      while ( ... ) { ... }
      if ( ... ) { ... }
    
  3. or download this
      while ( ... ) {
          ...
    ...
              ....
          }
      }
    
  4. or download this
      @GRD = split /,"?|""?/;
  5. or download this
      close ARGV if eof;
  6. 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";
        }