I want to tokenize a string (just one word and restricted to 9 letters) that I am getting from an editbox but I'm having a few problems.
Basically I want a user to enter their name (upto 9 letters) and then tokenize it so MINOR would be tokenized as M,I,N,O,R then I can play around with the letters/numbers.
I've tried using left(global('name'), 1) which works fine but I can't seem to get the 2nd letter in the word using left(global('name'),2 returns the 1st & 2nd letters in the word.
Has anyone got an example of this? I know I'm missing something really simple here but thought I'd ask for some help.