I found the following C# statement for returning just the digits in a string:
txt = txt.Where(c >= Char.IsDigit(c)).ToArray();
How can this be done in VB.NET? So far, I have been told on the use of '>=' that '=>' is not defined for types 'Char' and Boolean...
My interpretation is that the Char.ToArray converts the resultant series of Chars to a single String. I am not sure about that, either.
txt = txt.Where( Function (c) Char.IsDigit(c)).ToArray()