in reply to Re: How do I access only certain elements of a multidimensional array?
in thread How do I access only certain elements of a multidimensional array?
Hi igoryonya,
map { push(@new_shapes, [@$_[2..$#$_]]) } @shapes;
I probably not use map like you are using.
Maybe something like so:
Output:my @new_shapes = map { [ @{$_}[ 2 .. $#$_ ] ] } @shapes; print join( " " => @{$_} ), $/ for @new_shapes;
triangle polygon blue yellow fuschia c d e f g h i j k Radio
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How do I access only certain elements of a multidimensional array?
by igoryonya (Pilgrim) on Nov 07, 2015 at 07:45 UTC |