Checks if a string contains only lowercase characters.
StringIsLower ( "string" )
Parameters
string | The string to check |
Return Value
Success: | Returns 1. |
Failure: | Returns 0 if string contains non-lowercase characters. |
Remarks
Note that digits/punctuation/whitespace will cause StringIsLower to return 0.
Related
StringIsAlNum, StringIsAlpha, StringIsASCII, StringIsDigit, StringIsSpace, StringIsUpper, StringIsXDigit, StringUpper, StringLower
Example
If StringIsLower("abcfoo") Then
MsgBox(0, "Result:", "String contained only lowercase letters")
EndIf