Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对不起我的菜鸟,这会迭代整个表。但是,我想从第二行开始迭代。怎么做。
foreach my $row ($table->rows) { print join(',', @$row), "\n"; }
谢谢。
my @rows = $table->rows; for my $row (@rows[ 1 .. $#rows ]) { print join(',', @$row), "\n"; }