如果我有一个二维数组,怎么可能访问循环内的整个子数组?现在我有
foreach my $row(@data){
foreach my $ind(@$row){
#perform operations on specific index
}
}
但理想情况下,我正在寻找类似的东西
foreach my $row(@data){
#read row data like $row[0], which if it has the data I'm looking for
#I can go ahead and access $row[3] while in the same row..
}
我对 Perl 还很陌生,所以可能还不明白一些东西,但是当我尝试以我想要的方式使用它时,我一直保持“全局符号“@row”需要明确的包名称”。