How to put string into array

Hello.

I have a string of characters e.g, thequickbrownfox

I want to put that in an array of 16 TextFields

What is the easiest way to do that?

Thanks.

Lennox

Make your text fields into a control set. Use s.Split( “” ) to split the string into an array, then loop through the array to fill in the text fields, index maching index.

Thanks Kem.
Works great.
Lennox