Created
July 12, 2010 19:38
-
-
Save cleydson/472956 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Public Shared Function GetNumbers(ByVal texto As String) As String | |
| Try | |
| Return System.Text.RegularExpressions.Regex.Replace(texto, "[^\d]", String.Empty) | |
| Catch ex As Exception | |
| Throw | |
| End Try | |
| End Function |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Return just the numbers of a string. VB.Net code.