in reply to Remove one level from array

 $a_new = $a_old->[0] ?

UPDATE

I'm confused, cause this doesn't really make sense

> $VAR1 = [ {},... ],[ {},... ]...;

might be you want:

@new = @$a_old;

if not please explain.

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!

Replies are listed 'Best First'.
Re^2: Remove one level from array
by Anonymous Monk on Oct 28, 2015 at 15:50 UTC
    That was just to illustrate the data structure, the code sample shows it better.