I have to change a string into integer
var floorname = coll.collider.gameObject.name; //output:block25
var cur = floorname.Substring(5); //output: 25
var cu = parseInt(cur);
But while giving print(cu); it shows value properly. but with a error FormatException: Input string was not in the correct format System.Int32.Parse (System.String s)
How can i clear this?
Thanks in Advance
parseInt(cur,10);or using NumberNumber(cur);– adeneo Dec 20 '12 at 5:53cur = cur.Trim()before parseInt. – Calvin Dec 21 '12 at 4:42