lets say I have this string:
var rawData : String = "Joe ; 99 ; Bacon";
How can I convert this string to a string array?
I know a possible way but I’ve no idea how to code it
if rawData.Find “;” then the previous letters (Joe) goes to a newArray[1] etc…