7

我需要将表格转换为逗号分隔的列表,以便将其保存到文本文件中。在 Lua 中是否有内置方法可以做到这一点?

4

5 回答 5

15

如果你的表是一个数组,你可以table.concat用来打印 CSV:

t={10,20,30}
print(table.concat(t,","))

输出10,20,30

于 2011-07-06T00:00:19.160 回答
2

没有内置函数,但网上有例子。

这实际上是一个体面的。

于 2011-07-05T22:43:04.667 回答
1

不,没有“内置”功能。但是自己做并不难。我保留了一个脚本,用于将 Lua 表作为 Lua 脚本直接写入文件,然后可以像 Lua 脚本一样加载和执行。

--This file exports a function, WriteTable, that writes a given table out to a given file handle.

local writeKey = {};

function writeKey.string(hFile, value, iRecursion)
    WriteFormatted(hFile, "[\"%s\"]", value);
end

function writeKey.number(hFile, value, iRecursion)
    WriteFormatted(hFile, "[%i]", value);
end

local writeValue = {};

function writeValue.string(hFile, value, iRecursion)
    WriteFormatted(hFile, "[==[%s]==]", value);
end

function writeValue.number(hFile, value, iRecursion)
    WriteFormatted(hFile, "%i", value);
end

function writeValue.boolean(hFile, value, iRecursion)
    if(value) then hFile:write("true"); else hFile:write("false"); end;
end

function writeValue.table(hFile, value, iRecursion)
    WriteTable(hFile, value, iRecursion)
end

local function WriteFormatted(hFile, strFormat, ...)
    hFile:write(string.format(strFormat, ...));
end

local function WriteForm(hFile, strFormat, ...)
    hFile:write(string.format(strFormat, ...));
end

local function WriteTabs(hFile, iRecursion)
    for iCount = 1, iRecursion, 1 do
        hFile:write("\t");
    end
end

function WriteTable(hFile, outTable, iRecursion)
    if(iRecursion == nil) then iRecursion = 1; end

    hFile:write("{\n");

    local bHasArray = false;
    local arraySize = 0;

    if(#outTable > 0) then bHasArray = true; arraySize = #outTable; end;

    for key, value in pairs(outTable) do
        if(writeKey[type(key)] == nil) then print("Malformed table key."); return; end
        if(writeValue[type(value)] == nil) then
            print( string.format("Bad value in table: key: '%s' value type '%s'.", key, type(value)));
            return;
        end

        --If the key is not an array index, process it.
        if((not bHasArray) or
                (type(key) ~= "number") or
                not((1 <= key) and (key <= arraySize))) then
            WriteTabs(hFile, iRecursion);
            writeKey[type(key)](hFile, key, iRecursion + 1);
            hFile:write(" = ");
            writeValue[type(value)](hFile, value, iRecursion + 1);

            hFile:write(",\n");
        end
    end

    if(bHasArray) then
        for i, value in ipairs(outTable) do
            WriteTabs(hFile, iRecursion);
            writeValue[type(value)](hFile, value, iRecursion + 1);
            hFile:write(",\n");
        end
    end

    WriteTabs(hFile, iRecursion - 1);
    hFile:write("}");
end
于 2011-07-05T22:40:50.630 回答
0

没有内置方式,但如果您想自己构建它,有许多选项相对容易。以下是一些链接,可以帮助您确定如何将它们组合在一起:

http://www.lua.org/pil/12.1.html
http://lua-users.org/wiki/TableSerialization

于 2011-07-05T22:39:03.657 回答
-1

是的,有一个内置方法,它已经存在了很长时间。

-- table.concat
local line = { "Fred", 20, 4.000 }
print(table.concat(line,","))

输出:弗雷德,20,4.000

您可以使用此函数将表格转换为字符串,只需选择“,”作为分隔符。您还可以添加一个在连接期间运行并检测您编写了多少属性的函数,然后添加一个新行 - 如果您需要,您可以制作一个非常复杂的转换器。

我的建议是打破逗号分隔表的每一“行”,并用“,”连接每个“行”,然后写出来。通过这种方式,您可以确保可以处理大量行,并且每行的格式都正确。

注意事项:

  • 您将不得不处理带有逗号、引号等的字符串。
  • 此方法主要用于有序表(列表或数组)。它们必须被索引。
  • 如果您需要对表中的值进行处理,请先进行处理。然后连接。

concat 参考: http ://www.lua.org/manual/5.1/manual.html#pdf-table.concat

于 2020-09-09T04:32:39.607 回答