Perl 输出覆盖自身

发布于 2024-12-15 08:10:37 字数 322 浏览 0 评论 0原文

我的代码循环遍历文件中的行,并尝试打印出每一行,并在开头和结尾添加一些内容。

但是,我得到这样的输出:“nominalte 奶牛”。

基本上,该行(标称)后面的位会覆盖它的开头。我知道删除 chomp 和 regex 行可以阻止这种效果,但我需要它在没有空格的一行上。我哪里出错了?

while ($line = <INPUT>) {

        chomp $line;
        $line =~ s/ //g; 
        printf "\@attribute %s nominal\n", $line;
}

I have code which loops through lines in a file, and tries to print out each line with something added at the start and end.

However, I get output like this: "nominalte cows".

Basically, the bit after the line (nominal) overwrites the start of it. I know that removing the chomp and regex lines stops this effect, but I need it to be on one line without spaces. Where am I going wrong?

while ($line = <INPUT>) {

        chomp $line;
        $line =~ s/ //g; 
        printf "\@attribute %s nominal\n", $line;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七婞 2024-12-22 08:10:37

您的输入文件可能来自 MS Windows,行尾编码为 CR-LF。您也可以仅 s/\r// 删除 CR。

Your input file is probably from MS Windows with end of line encoded as CR-LF. You can also just s/\r// to remove the CR.

a√萤火虫的光℡ 2024-12-22 08:10:37

您的变量中可能有 \r 。尝试使用 \s

$line =~ s/\s//g; 

请参阅 perlre 了解 的含义\s

You might have \r in your variable. Try using \s:

$line =~ s/\s//g; 

See perlre for the meaning of \s.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文