in reply to Storing table data in a (simulated) multidimensional array
Use references right from the start. There's no need for an intermediate array. I think you would benefit from reading the following (in this order): perlreftut, perllol, and perldsc. References are also discussed in great depth in perlref, but the first three docs I mentioned are easier reads, and will get you going in the right direction.
use strict; use warnings; use Data::Dumper; my @parsed_table = map { [ split /,/ ] } FilterData( 2, 0 ); print Dumper \@parsed_table;
Dave
|
|---|