IsLCase
Result = IsLCase ( Arg AS String ) AS Boolean
Result = IsLower ( Arg AS String ) AS Boolean
Restituisce
TRUE se la stringa
Arg contiene solo caratteri ASCII minuscoli.
Un carattere minuscolo è uno dei seguenti caratteri:
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
Esempi
PRINT IsLCase("gambas")
PRINT IsLCase("Cool"), IsLCase("jürgen"), IsLCase("ab3as")
Vedi anche