Help for this page

Select Code to Download


  1. or download this
         # Define the format of the file
         my (@file_format) = (
               0,
    ...
            # etc.
            241+169, # Last position, presumably
         );
    
  2. or download this
         my (@field_data);
         for (my $i = 0; $i < $#file_format; $i++)
         {
    ...
               $field_data[$i] =~ s/\s+$//;
         }
         print OUT_FILE join('|', @field_data);