I want to split a string into an array, for example :

aString="a b c d";

The result should be an array :

a[1] = "a"
a[2] = "b"
a[3] = "c"
a[4] = "d"

Anyone know how to do this using actionscript ?