Lua - 将表转换为逗号分隔列表

时间:2011-07-05 22:35:35

标签: csv lua lua-table

我需要将表转换为逗号分隔列表,以便将其保存到文本文件中。是否有内置的方法在Lua中执行此操作?

5 个答案:

答案 0 :(得分:12)

如果您的表格是数组,则可以使用table.concat打印CSV:

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

输出10,20,30

答案 1 :(得分:2)

没有内置功能,但网上有例子。

This is a decent one actually.

答案 2 :(得分:0)

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

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

答案 3 :(得分:0)

不,没有“内置”功能。但是自己做起来并不难。我保留一个脚本,以递归方式将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

答案 4 :(得分:-1)

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

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

输出:Fred,20,4.000

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

我的建议是用逗号分隔的表的每一行打破,并用“”组合起来,然后将其写出来。这样,您可以确保可以处理大量的行,并且每行的格式都正确。

注意事项:

  • 您将必须使用逗号,引号等处理字符串。
  • 此方法主要用于有序表(列表或数组)。必须将它们编入索引。
  • 如果需要处理表中的值,请首先进行处理。然后concat。

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