在Perl中,如何在一个循环中读取多个文件句柄?

前端之家收集整理的这篇文章主要介绍了在Perl中,如何在一个循环中读取多个文件句柄?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何在Perl中实现它:
while ( not the end of the files )
    $var1 = read a line from file 1
    $var2 = read a line from file 2
    # operate on variables
end while

我不确定如何在一个while循环中从两个文件一次读取一行.

解决方法

好像你自己写了几乎所有的答案.只需检查两个文件句柄的eof,如下所示:
while (not eof $fh1 and not eof $fh2) {
    my $var1 = <$fh1>;
    my $var2 = <$fh2>;
    # do stuff
}

更多阅读:

> perldoc -f open
> perldoc -f eof
> perldoc perlopentut

原文链接:https://www.f2er.com/Perl/172032.html

猜你在找的Perl相关文章