Is there a way to decompose a single number string into individual letters?

Hello,
I’m looking for a way to decompose a string into individual letters.
For example, if you enter “123456” in a string node, it made outputs like “1”, “2”, “3”, “4”, “5”, and “6”.
I tried using string.split, but the result was not what I expected.I think I could use something like length, but I can’t quite figure out how to do it.

image

Feed the String.Split an empty string. :slight_smile:

1 Like

It was really simple :wink: Thank you so much :smiley:

1 Like