Hi,
I have a string like 32/355ab//3456 from which I need to extract
the three separate numbers 32, 355 and 3456.
The string pattern may vary.
I can use Split by (say) / to separate strings.
How can I extract groups of numbers from a 'mixed' string like
above. The string length and number of non numeric chars may vary.
Using
Dim numbers = Regex.Replace("32/355ab//3456", "\D", "")
does not give me separate numbers
(It replaces non digits and retains 323553456 as one number).
Thanks
Newbie Simon