📜  lua 表转字符串 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:26.378000             🧑  作者: Mango

代码示例1
table.concat(list: table, sep: string, i: integer, j: integer)

local tbl = { 'Hello', 'World', 'this', 'is', 'awesome'}
print(table.concat(tbl, ' '))
-> Hello World this is awesome