Is it possible to split a string like “hello world” into a list or an array [“hello”, “world”] in Unity?
Take a look at the String.Split function if it can’t be found on the forums im sure the C# reference from MS has it.
Regards,
Marc
myString = "hello world";
arr = new Array();
arr = myString.Split(" "[0]);
print (arr[1]); // prints "world"