我是 Lua 新手,需要一些帮助来解析文本文件并将数据输出为表格格式。
文本文件设置在表示
GroupID
IndividualID
Name
Status
并包含以下内容的列中:
100 1 AAA 1
100 2 BBB 2
100 3 CCC 0
200 4 DDD 1
200 5 EEE 1
我希望输出显示为:
100 2
200 2
第 2 列是非零状态的完全计数。到目前为止,这是我的代码:
function readText ("sample.txt")
local file = io.open("sample.text", "r")
if file then
for line in file:lines() do
local group, individual, name, status = line:split(" ")
local count = 0
if status ~= "0" then count = count + 1
table.insert (group, count)
print (group, count)
end
file:close()
else
end
end
为了输出 2nd 的计数GroupID
,我需要使用
if group ~= group then
table.insert (group, count)
提前感谢您的帮助!