in reply to How to concatenate a generic array of arrays and an array of hashes
my $array_size = @array; # scalar assignement yields the size (number +of elements) of @array for (my $i = 0; $i < $array_size; $i++) { print $array[ $i ][0], $array[ $i ][1], $array[ $i ][2]; # etc }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to concatenate a generic array of arrays and an array of hashes
by thanos1983 (Parson) on Jul 07, 2014 at 09:31 UTC |