Game Editor Split string
Posted: Wed Nov 16, 2011 8:39 pm
Hi.
How can I split a string to array by a special character.(like explode() in PHP).
Exemple:
"6,6,6,6,6,6,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4"
to split with "," and get an array(ex. words) words[0] supposed to be 6 but words [6] supposed to be 4
Is there a solution?
How can I split a string to array by a special character.(like explode() in PHP).
Exemple:
"6,6,6,6,6,6,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4,
4,4,4,4,4,4"
to split with "," and get an array(ex. words) words[0] supposed to be 6 but words [6] supposed to be 4
Is there a solution?