http://snippets.bentasker.i2p/page-1707261438-Imploding-a-table-LUA.html
Published: 2017-07-26 14:42:36 +0000 Categories: LUA , Language LUA Description 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() Snippet table.concat(table,delimeter) Usage Example t = {'1','2','3','4'}
table.concat(t, " - " ) -- Gives...