substring to end

Hi!
I just wanted to ask, whether there’s a possibilty of getting a string from char 5 to the end of the string…

What I want to do is:
You type in

width:293847

and it gets the value 293847 as an int

but if I used a fixed length this wouldn’t be possible:

width:298374629834762398476

so please help me

Well there is a method called Substring.
In your case this would look something like this (C#):

string rawstring = "width:298374629834762398476";
string newstring = rawstring.Substring(5);