join(table, delimiter)
Append all values in a table together into a string result, each value separated by the delimiter string. The delimiter can be an empty string (or null).
Example
t = { "t", "e", "s", "t" }
test = join(t, "" )Append all values in a table together into a string result, each value separated by the delimiter string. The delimiter can be an empty string (or null).
Example
t = { "t", "e", "s", "t" }
test = join(t, "" )