Viewing 2 posts - 1 through 2 (of 2 total)
I used follwing fuction, m now able to extract numbers from string
--
Shared Function ExtractNumbers( ByVal expr As String ) As String
Return String.Join( Nothing, System.Text.RegularExpressions.Regex.Split( expr, "[^\d]" ) )...
March 23, 2010 at 7:09 am
#1138191
Thanks guys it worked for me..
Regards,
shekhar
March 20, 2010 at 3:06 am
#1137157