in reply to split an array into and array???
my @array2 = map {[split "\n"]} @array; print "@{$array2->[1]}"; [download]
So, each element in @array2 contains a reference to a list created from the corresponding element in @array;
Hope this helps.
Liz