Hi, if I have a multidimensional array like :
@AoA = (
["ABC", "BCD"],
["CDE", "DEF"],
["EFG", "FGH"],
);
then do:
@var = splice @AoA, 2, 1; # to delete the last row
print @var; #print what was returned from splice
The print statement prints an address. I like it to print the contents
that was removed. How do I do that?
~Sitha
- Re: Simple question on splice Sitha Nhok
- Re: Simple question on splice Rob Anderson
- Re: Simple question on splice Rob Anderson
- Re: Simple question on splice Rob Dixon
- Re: Simple question on splice Rob Dixon
