Hi,
i was wondering if there is a command to split an array?
Like there is in Python Scripting.

Like the array is filled with:

Code:
MyArray = ["hello,there,all"]

If i acces my array now it will look like
MyArray[0] = hello,there,all
Now i want to split the array everywhere where the "," is.
So the array becomes:
MyArray[0] = hello
MyArray[1] = there
MyArray[2] = all

Can someone help me out ?


Greetzzz,


-The Dragon's Eye is alway's watching you!-