Search Results

0
votes

Replace non-numeric with empty string

Using the Regex methods in .NET you should be able to match any non-numeric digit using \D, like so: phoneNumber = Regex.Replace(phoneNumber, "\D", ""); …