在此之前我有更多代码填充数组@a_nam。现在我想将数组 @a_nam 中的元素附加到 abc.txt 中下面显示的行的末尾。我尝试了一些东西,但它不起作用。请提供您的意见。编辑:我试过“+>>”,但没有用。
## NAME_id , course, Fall 10 ,spring 11, ........
open my $file, '+>>', 'abc.txt' or die "failed : $!";
while (<$file>) {
chomp;
if (/^## NAME(.*)/) {
print $file join ",", @a_nam;
}
}
close($file);