Hi,
I need to be able to split a string into individual characters. Currently I have accomplished this using SINstring = target.split(" ");
and I have to enter the SIN as "1 2 3 4 5 6 7 8 9" but how can I have it so that I can input "123456789". Splitting it by any number with \d causes it to output nothing into the array because the delimiter gets removed and since all of them are numbers they go bye bye.
Thanks for any input,
Andrew
I need to be able to split a string into individual characters. Currently I have accomplished this using SINstring = target.split(" ");
and I have to enter the SIN as "1 2 3 4 5 6 7 8 9" but how can I have it so that I can input "123456789". Splitting it by any number with \d causes it to output nothing into the array because the delimiter gets removed and since all of them are numbers they go bye bye.
Thanks for any input,
Andrew