First import the namespace System.Text.RegularExpressions;
C#
// Replace non-numeric characters string str = "12d223*23#22";
string newStr = Regex.Replace(str, @"[^\d]", "");
// Displays 122232322VB.NET
' Replace non-numeric characters Dim str As String = "12d223*23#22"
Dim newStr As String = Regex.Replace(Str, "[^\d]", "")
' Displays 122232322Tweet
3 comments:
This was perfect - thanks for the great (and simple) post!
Regex.Replace has a speed problem, will be your slowest line on your code, use with caution.
THANKS !!!!!
Post a Comment