我是 Lua 编程的初学者,我一直在阅读文本文件并尝试将其存储在数组中。我知道已经存在这样的主题,但我想知道如何存储具有不同数量的数字的行。例如:在文本文件中:
1 5 6 7
2 3
2 9 8 1 4 2 4
我如何从中制作一个数组?我找到的唯一解决方案是具有相同数量的数字。
local tt = {}
for line in io.lines(filename) do
local t = {}
for num in line:gmatch'[-.%d]+' do
table.insert(t, tonumber(num))
end
if #t > 0 then
table.insert(tt, t)
end
end
t = {}
index = 1
for line in io.lines('file.txt') do
t[index] = {}
for match in string.gmatch(line,"%d+") do
t[index][ #t[index] + 1 ] = tonumber(match)
end
index = index + 1
end
您可以通过执行查看输出
for _,row in ipairs(t) do
print("{"..table.concat(row,',').."}")
end
这表明
{1,5,6,7}
{2,3}
{2,9,8,1,4,2,4}
假设您希望生成的lua 表(不是数组)看起来像:
mytable = { 1, 5, 6, 7, 2, 3, 2, 9, 8, 1, 4, 2, 4 }
那么你会这样做:
local t, fHandle = {}, io.open( "filename", "r+" )
for line in fHandle:read("*l") do
line:gmatch( "(%S+)", function(x) table.insert( t, x ) end )
end
您可以逐个字符地解析文件。当 char 是数字时,将其添加到缓冲区字符串中。如果是空格,则将缓冲区字符串添加到数组中,并将其转换为数字。如果是换行符,则与空格相同,但也要切换到下一个数组。