I need a regular expression that I can use in VBScript and .NET that will return only the numbers that are found in a string.
For Example any of the following \"str
As an alternative to the main .Net solution, adapted from a similar question's answer:
.Net
string justNumbers = string.Concat(text.Where(char.IsDigit));