IsLower

<evalcmd> IsLower && bool && True if string consists only of lowercase letters. && string && string && String to test. </evalcmd>

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

最后更新于