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