Hello,
I was wondering how to make commas between separated strings.
Example:
You have saved strings in table and you want to display all of them in TextLabel.Text
with commas between each other.
Hello,
I was wondering how to make commas between separated strings.
Example:
You have saved strings in table and you want to display all of them in TextLabel.Text
with commas between each other.
local mystrings = {"one", "two", "three", "four"}
table.concat(mystrings, ", ")
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.