IsUCase
Result = IsUCase ( Expr AS String ) AS Boolean
Result = IsUpper ( Expr AS String ) AS Boolean
Restituisce
TRUE se
String Expr contiene solo lettere maiuscole.
Una lettera maiuscola è 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
Altri caratteri oltre a questi non sono considerati in maiuscolo, come ad esempio: Ä Ö Ü É À…
Esempi
PRINT IsUCase("GAMBAS")
PRINT IsUCase("Cool")
Vedi anche