gpt4 book ai didi

perl - 有没有更简单的方法来使用 Perl chomp?

转载 作者:行者123 更新时间:2023-12-01 05:12:12 26 4
gpt4 key购买 nike

我经常要做:

#similarly in while (my $val = <$fh>){...}
my $val = <$fh>;
chomp $val;

my $res = `command`;
chomp $res;

如果可以的话,我宁愿跳过第二行。我看到我可以在我的 shebang 行中使用 -l 选项基于:Is there anything in core Perl to auto-chomp lines from "<>" operator?

反引号有类似的东西吗?或者,是否有一种不那么冗长的 chomp inline 方法?

最佳答案

sub chomper(_) {
my ($line) = @_;
chomp($line) if defined($line);
return $line;
}

while (defined( my $line = chomper(<>) )) {
...
}

关于perl - 有没有更简单的方法来使用 Perl chomp?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53291813/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com