I have a string which can contain values both in Character
and Numeral
format along with some special characters like <>
.So as per my requirement i have to remove these special characters and Character
from the string.
Here is the string example..
string s = "O9668253";
string s2 = "<O>9668253";
And i need output like..
string s = "9668253";
string s2 = "9668253";
So how can i get this here .Please help me..