Hello堆栈溢出用户,我在这里有一些代码:
local input = nil
print("What file do you want to access?")
input = io.read();
local file = io.open(input, "r")
function infiniteLoop()
print("What do you want to know more about?")
input = io.read();
while true do
line = file:read()
if line == nil then break end
if string.find(line, input) then
print(line)
end
end
end
repeat
infiniteLoop()
until false
正如你可以从标题中猜到的那样,它可以在第一次运行时运行,但第二次它不会打印出你想要的内容,无论它是否在文件中。
答案 0 :(得分:1)
您需要重置文件指针。尝试在函数开头添加file:seek(0)