Removing non numeric character in a string variable

Hi @alvin.c.apostol26

How about this expression

System.Text.RegularExpressions.Regex.Replace(yourString,"[A-Z]+","").ToString

Regards
Gokul