does this help?
you can split a string with string slpit so you can just use whatever you like to delimit the item like below, (to and from string).
string timertext = ""+ minutes+"":"+seconds+":"+fraction);
string [] vItems=timertext.Split(':');
minutes=float.Parse(vItems[0]);
seconds=float.Parse(vItems[1]);
fraction=float.Parse(vItems[2]);
[edit] this is c#, sorry, but the theory shouldd still work :)
↧