#String to list of characters?

1 messages · Page 1 of 1 (latest)

eternal mason
#

So I'm trying to make a very big project and I'm trying to figure out how I could split a string into a list, with each character being a separate item in the list. Is this possible?

eternal mason
tacit lake
# eternal mason How could I do it manually?

List Clear can clear a list variable
For + String Length can run an execution once per character in the string
String Substring can grab a specific part of text that is Index characters into the string, and Length characters long
A List<String> Variable can hold up to 4096 strings
List Add can add items into a variable

#

Combining all of these, you can run a loop for each character in the string and add it into a list