IsLCase

Result = IsLCase ( Arg AS String ) AS Boolean Result = IsLower ( Arg AS String ) AS Boolean

Returns TRUE if the string Arg contains only ASCII lower case characters.

A lower case character is one of the following characters: a b c d e f g h i j k l m n o p q r s t u v w x y z

Examples

PRINT IsLCase("gambas")
True

PRINT IsLCase("Cool"), IsLCase("jürgen"), IsLCase("ab3as")
False   False   False

See also