Help for this page

Select Code to Download


  1. or download this
    foreach (@stuff)
    {
         my ($a,$b,@stuff) = split (/:/);
    
         push (@{$data{$a}{$b}}, @stuff);
    }
    
  2. or download this
    foreach (@stuff)
    {
         my ($a,$b,@stuff) = split (/:/);
    
         $data{$a}{$b} = [ @stuff ];
    }
    
  3. or download this
    my %column_width;
    
    foreach my $row (keys %data)
    ...
              $line++;
         } while ($continued);
    }