Checks if a string contains only lowercase characters.
StringIsLower ( "string" )
| string | The string to check |
| Success: | Returns 1. |
| Failure: | Returns 0 if string contains non-lowercase characters. |
If StringIsLower("abcfoo") Then
MsgBox(0, "Result:", "String contained only lowercase letters")
EndIf