remove all non number in c#

41

remove all non number in c# -

public static string RemoveNonNumeric(string value) => Regex.Replace(value, "[^0-9]", "");

Comments

Submit
0 Comments