lua 文本文件处理笔记 Lua 文件 I/O Lua 字符串 -- 只读模式打开,并返回每一行 for line in io.lines("./file.txt") do print('(' .. string.sub(line, -3) .. '),'); end