I feel kinda silly asking this question, but here goes...
the default split() function "split by" value is a space " ". How can you set it so it'll split a value to seperate every character in a string?
Example...
string = "Hello There!"
Desired result...
string(0) = "H"
string(1) = "e"
string(2) = "l"
string(3) = "l"
string(4) = "o"
string(5) = " "
string(6) = "T"
string(7) = "h"
string(8) = "e"
string(9) = "r"
string(10) = "e"
string(11) = "!"
Thanks in advance. -Ovatvvon :-Q
the default split() function "split by" value is a space " ". How can you set it so it'll split a value to seperate every character in a string?
Example...
string = "Hello There!"
Desired result...
string(0) = "H"
string(1) = "e"
string(2) = "l"
string(3) = "l"
string(4) = "o"
string(5) = " "
string(6) = "T"
string(7) = "h"
string(8) = "e"
string(9) = "r"
string(10) = "e"
string(11) = "!"
Thanks in advance. -Ovatvvon :-Q