IsLower(
     string:string
)
bool

Arguments

string

String to test.

Return value

True if string consists only of lowercase letters.

Description

Returns True if string consists entirely of lowercase letters, otherwise returns False.

Example:

Output(IsLower("abcde"))
--> true

Output(IsLower("abCde"))
--> false

See also:
IsAlpha
IsDigit
IsPunct
IsSpace
IsUpper