Say I have 2-d array A like this,
my @A;
$A[0][0]="text1";
$A[0][1]="text2";
$A[0][2]="text3";
$A[1][0]="text4";
$A[1][1]="text5";
$A[1][2]="text6";
I want to convert it to another array B so that
$B[0]
will contain (["text1","text2","text3"])
and
$B[1]
will contain (["text4","text5","text6"])
.
I have tried
my @B = $A[];
But it obviously doesn't work.
Your description of the new
@B
is what@A
already contains. If you mean what I think you mean then you can do this with a simplemap
: