So I have this little string right, “0,1,2,3,4,Text Here,5,6,7,8”
Would it be possible to use split string to detect any letter so it splits into
0,1,2,3,4
Text Here,5,6,7,8
I’ve tried to use string.split with “%a” but that just does nothing. Am I doing something wrong?
String.split is just to seperate the words by the index you give. So like string:split(“i”) would do like AIMIDDLE to A M DDLE. What you are want to use is the string.format()
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.