gpt4 book ai didi

perl - 什么是文本阅读的好方法?

转载 作者:行者123 更新时间:2023-12-04 06:57:19 26 4
gpt4 key购买 nike

在我的 sms-script 中,我读入了用这个子程序发送的文本:

my $input = input( "Enter the input: " );

sub input {
my $arg = shift;
print $arg if $arg;
print "\n ";
chomp( my $in = <> );
return $in;
}

通过这种方式,我只能通过取消所有来纠正错误,直到我到达错误为止,而这只在最后一行。
有没有更好的方式来阅读我的文字?

最佳答案

这是读取输入的“正常”方式:

use strict;
use warnings;

# ...

while (my $input = <>)
{
chomp $input;
handle_error($input), next unless validate($input);

# do something else with $input...

}

关于perl - 什么是文本阅读的好方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2392747/

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