Fizo Posted December 28, 2017 Share Posted December 28, 2017 (edited) Hello, I have problem, my function inserted to table data and when. I trying display this it looks like this A F G N but I want display in horizontal position, And second question, how concat. letters in table to one word? Thank's of lot for help Edited December 28, 2017 by Fizo Link to comment
Tails Posted December 28, 2017 Share Posted December 28, 2017 It could mean a 100 different things if you don't show us some code. You can concat tables with table.concat. For e.x.: local a = {"a", "b", "c"} print(a[1]..", "..a[2]) --> "a, b" print(table.concat(a, ", ")) --> "a, b, c" Link to comment
Fizo Posted December 28, 2017 Author Share Posted December 28, 2017 I have an onClientKey event, and this event to insert a letter into the table. But I do not know how to join the chars into one word. I'm fixed this, Thank you Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now