Public Shared Function ReturnNumericValues(ByVal Text As String) As ArrayList
Dim myRegExp As New System.Text.RegularExpressions.Regex("[0-9]{1,}", RegexOptions.IgnoreCase)
Dim Matches As System.Text.RegularExpressions.MatchCollection
Matches = myRegExp.Matches(Text)
Dim myMatch As System.Text.RegularExpressions.Match
Dim matchedValues As New ArrayList
For Each myMatch In Matches
matchedValues.Add(myMatch.Value)
Next
return matchedValues
End Function