Skip to content

Instantly share code, notes, and snippets.

@operator-DD3
Created July 18, 2014 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save operator-DD3/1c94a0dfe514fef84fb6 to your computer and use it in GitHub Desktop.
Save operator-DD3/1c94a0dfe514fef84fb6 to your computer and use it in GitHub Desktop.
String to Table
local str = "text"
local t = {}
for i = 1, #str do
t[i] = str:sub(i, i)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment