Super simple, I just Wanna know how to split a string e.g. “A4” into {“A”, “4”}
I don’t know why I’m having such a hard time working this out
~[redacted]
Super simple, I just Wanna know how to split a string e.g. “A4” into {“A”, “4”}
I don’t know why I’m having such a hard time working this out
~[redacted]
Use string.split
.
local stringCharacters = string.split("A4","")