- Home
·
- String Manipulation
·
- Check whether or not a given character is an uppercase or lowercase character using a single line A
Check whether or not a given character is an uppercase or lowercase character using a single line A
Check whether or not a given character is an uppercase or lowercase character using a single line API call.
API Declarations
Declare Function IsCharLower Lib "user32" Alias "IsCharLowerA" (ByVal cChar As Byte) As Boolean
Rate Check whether or not a given character is an uppercase or lowercase character using a single line A
(2(2 Vote))
MyChar = "A"
Result1 = IsCharUpper(Asc(MyChar))
Result2 = IsCharLower(Asc(MyChar))
End Sub
Check whether or not a given character is an uppercase or lowercase character using a single line A Comments
No comments yet — be the first to post one!
Post a Comment