/ Published in: Visual Basic
This method checks whether a given string is a letter (no umlauts). The string should only be one character.
Expand |
Embed | Plain Text
Public Function isLetter(str As String) isLetter = (InStr(1, "abcdefghijklmnopqrstuvwxyz", LCase(str)) > 0) End Function
You need to login to post a comment.
