gpt4 book ai didi

perl - 在 Perl IO::File 中设置要读取的行

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

如何根据行号(而不是字节)更改文件句柄中指针的位置?

我想将第一行设置为开始读取文件。这样做的正确方法是什么?

最佳答案

设置文件指针本身不是目的。如果你想阅读某一行,使用 Tie::File .

use Tie::File qw();
tie my @file, 'Tie::File', 'thefilename' or die $!;
print $file[2] # 3rd line

关于perl - 在 Perl IO::File 中设置要读取的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11212653/

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