gpt4 book ai didi

perl - 如何在 Perl 中查看文件的下一行

转载 作者:行者123 更新时间:2023-12-04 22:14:08 26 4
gpt4 key购买 nike

我有一段代码可以打开一个文件并解析它。该文本文档具有冗余结构并具有多个条目。我需要在循环中提前查看是否有新条目,如果有,我将能够解析我的程序提取的所有数据。让我首先展示我到目前为止的实现

use strict;
my $doc = open(my $fileHandler, "<", "test.txt");

while(my $line = <$fileHandler>) {
## right here I want to look at the next line to see if
## $line =~ m/>/ where > denotes a new entry
}

最佳答案

尝试自己处理迭代:

my $line = <$fileHandler>;
while(1) { # keep looping until I say so
my $nextLine = <$fileHandler>;

if ($line =~ m/>/ || !defined $nextLine) {
### Do the stuff
}
### Do any other stuff;

last unless defined $nextLine;
$line = $nextLine;
}

我在 if 语句中添加了额外的检查,假设您还希望在到达文件末尾时处理您拥有的内容。

或者,正如frido所建议的那样,如果文件可以放入内存,您可以一次将整个内容加载到数组中:
my @lines = <$fileHandler>;
for (my $i = 0; $i <= $#lines; $i++) {
if ($i == $#lines || $lines[$i+1] =~ />/) {
### Do the stuff
}
}

这更灵活,因为您可以按任何顺序访问文件的任意行,但如前所述,文件必须足够小才能放入内存。

关于perl - 如何在 Perl 中查看文件的下一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14343914/

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