Help for this page

Select Code to Download


  1. or download this
    while( <DATA> ) {
      next if $. < 5;
    ...
      my @fields = unpack '(a7x)2a7', $_;
      # Do something with the fields.
    }
    
  2. or download this
    my $record_start = 0;
    my @recs;
    ...
        push @{$recs[-1]}, [@fields];
      }
    }