I would like to create a function that parses a string into an array like the split function (vb v6).
ex: "12 5 8 14"
This string is delimited by spaces. The resulting array would contain. myArray(1)=12 myArray(2)=5 etc.

Thanks