I've found a lot of ways to split a string at a comma in Lua, but that's not quite what I'm looking for. I need to be able to do the following: I have the argument ABC being in as a string, and I need to be able to extract just the A, B, and the C. How do I do this? I keep hoping something like this will work:
x = tostring(ABC)
x[1]
x[2]
x[3]