在进行一些解析后,我正在使用 open 3 并打印如下一行。我不想逐行打印 我想一次存储和打印 我该怎么做?
while(my $nextLine=<HANDLE_OUT>) {
chomp($nextLine);
if ($nextLine =~ m!<BEA-!){
print "Skipping this line (BEA): |$nextLine|\n" if $debug;
}
print $nextLine."\n";
}