It is possible to use split and then put it together again. Let say you have the string:
string s =
string s = "This is 1 string";
string[] sArray = s.Split(' '); //we split at spaces
s = "";
for(int i < sArray.Length - 1; i > -1; i--)
{
s += sArray[i];
}
Debug.Log(s);
//output: string 1 is this
It is possible to convert strings to float and int’s and the other way around in C#. If you need something more complex to split up the strings you should look at regular expressions.
This was definately my hardest lesson since I started my project. I get back my arrays now and just (I hope it’s a ~just~) need to convert to string, int, float.
Really big TY to you - you saved my happyness to start 2013 tomorrow, cos it was my goal to save my stuff before new years day.