table.concat
code:lua
table.concat(tbl[,sep[,i,j]]) table:
引数 型 デフォルト
(#2) string ''
(#3) number 1
戻り値 string
tbl[i]..sep..tbl[i+1].. ··· ..sep..tbl[j] を返す
i>jなら空文字列を返す
使用例
code:lua
local t={1,2,3,4,5,6}
print("{"..table.concat(t,",").."}")
code:output
{1,2,3,4,5,6}