I have a alhpanumeric string. I also have one number with me. The string will always start with this number. How do I separate this number from the string and get the remaining part of the string?
e.g. string => 21fgggg21.lkkk and number=> 21
result=> fgggg21.lkkk
or
string=> 215699898.55fff and number=> 2
result=> 15699898.55fff
Any hint would be appreciated. Thanks.