- or download this
if ($txtfile =~ m/(some associative pattern for each CSV list)/gs)
{
...
push @{$hash{$key}}, $1
}
}
- or download this
@{$hash{$key}}[0] = 0,1,2,3
@{$hash{$key}}[1] = 4,5
@{$hash{$key}}[2] = 6,7,8,9
- or download this
@{$hash{$key}}[0] = 0,1
@{$hash{$key}}[1] = 2,3
@{$hash{$key}}[2] = 4,5
...