Is there a way to turn a single word into an array? For example if I have the following:
local myString = "range"
local myTable = {}
and I want to split the word range into the following:
myTable = {"r","a","n","g","e"}
is there a way to do this in Lua? I would like to do this with string manipulations instead of hard coding it because myString will most likely hold random letters.
Thank you for your help!!! [import]uid: 14218 topic_id: 27328 reply_id: 327328[/import]
