在我的 perl 脚本中,我打开了一个文件并搜索了一个字符串。它是成功的。但是当我在搜索之后再次搜索相同的字符串时,脚本似乎从它所在的位置开始搜索,直到文件末尾,因此它无法再找到匹配项。我的代码是这样的:
open ( INFILE, "./input.txt")
for($i=0; $i < 3; $i++){
print "i = $i\n";
$found = 0;
while (! $found && ($line = <INFILE>)){
if ( $line =~ /string/ ){
print "found!\n";
$found = 1;
}
else{
print "not found!\n";
}
}
}
close (INFILE);
input.txt 文件:
string
random2
random2
我期望输出是:
i = 0
found!
i = 1
found!
i = 2
found!
但事实证明是:
i = 0
found!
i = 1
not found!
not found!
i = 2
谁能帮我这个。我刚开始学习perl。