将变量传递给函数时,lua 是否有扩展运算符?
例如,我有一个数组a
,我想将它传递给另一个函数,比如string.format
. 如果我这样做,string.format(a)
那么我会得到
bad argument #1 to 'format' (string expected, got table)
我试过local f, e = pcall(string.format, t)
没有任何运气。
库沙。我正在修补并偶然发现了一个您可能会感兴趣的功能。
在 Lua 的 5.1 版本中,unpack
作为全局函数可用。在 5.2 中,他们将其移至table.unpack
,这更有意义。您可以使用类似以下的方式调用此函数。除非您在格式参数中添加更多内容,否则string.format
只接受单个字符串。
-- Your comment to my question just made me realize you can totally do it with unpack.
t = {"One", "Two", "Three"};
string.format("%s %s %s", table.unpack(t)); -- One Two Three
-- With your implementation,
-- I believe you might need to increase the length of your args though.
local f = "Your table contains ";
for i = 1, #t do
f.." %s";
end
string.format(f, table.unpack(t));