Imploding a table (LUA)
LUA's concat method works just like PHP's implode, so simply needs to be called in a similar manner.
Returns a string containing each of the table entries, delimited by whatever delimiter is passed into concat
Similar To
- PHP implode()
- Python .join()
- Javascript .join()
Details
- Language: LUA
Snippet
table.concat(table,delimeter)
Usage Example
t = {'1','2','3','4'}
table.concat(t,"-") -- Gives 1-2-3-4
table.concat(t) -- Gives 1234