README.md
December 4, 2022 ยท View on GitHub
Description
This one-line function returns whether or not a string consists of only the characters A-Z, a-z, and 0-9.
More Info
| Submitted On | |
| By | Kamilche |
| Level | Beginner |
| User Rating | 4.8 (19 globes from 4 users) |
| Compatibility | VB 4.0 (32-bit), VB 5.0, VB 6.0 |
| Category | String Manipulation |
| World | Visual Basic |
| Archive File |
Source Code
Public Function AlphaNumeric(ByVal s As String) As Boolean
AlphaNumeric = Not s Like "*[!A-Za-z0-9]*"
End Function