c# remove all characters from string except numbers code example
Example 1: remove all non number in c#
public static string RemoveNonNumeric(string value) => Regex.Replace(value, "[^0-9]", "");
Example 2: remove all non alphabetic characters from string c#
var cleanString = new string(dirtyString.Where(Char.IsLetter).ToArray());