我正在尝试使用 chomp() 从文件中删除所有换行符。这是代码:
use strict;
use warnings;
open (INPUT, 'input.txt') or die "Couldn't open file, $!";
my @emails = <INPUT>;
close INPUT;
chomp(@emails);
my $test;
foreach(@emails)
{
$test = $test.$_;
}
print $test;
input.txt 文件的测试内容很简单:
hello.com
hello2.com
hello3.com
hello4.com
我的预期输出是这样的:hello.comhello2.comhello3.comhello4.com
但是,我仍然得到与输入文件相同的内容,请问有什么帮助吗?
谢谢