hi friends ..i have string like this "+919824335667"..now i want remove first three charcter ..
so i want only number 9824335667.
Want to boost your .NET application performance?
Some developers always seem to write efficient and lightening-fast code. What is their secret? It’s ANTS Profiler. “We improved the performance of the application up to 10 times” Dan Ports, Intrigma.
Try it for yourself now.
Please use substring for the string that you want
i.e :
Dim sNumber as String = "+919824335667"
MsgBox(sNumber.Substring(3))
It will help u.
String oldString = ""+919824335667";