Hi monks.i have a file.i want to make an array of arrays from this file but i dont want first element.i have written following code but there is problem that i cant understand.please help me.
#!/usr/bin/perl -w use strict; my @AoA; my $aref; open (IN,'<result'); while(<IN>){ push @AoA,[split]; } for $aref ( @AoA ) { shift @$aref ; }
i want finally @AoA .
In reply to array of arrays by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |