Home > lang > isucase 
 fr de es it nl pl pt pt_BR mk sq ca ar fa vi ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration  
Documentation
History
 
IsUCase
Syntax
vResult = IsUCase ( vExpr AS String ) AS Boolean
vResult = UCase? ( vExpr AS String ) AS Boolean
vResult = IsUpper ( vExpr AS String ) AS Boolean
vResult = Upper? ( vExpr AS String ) AS Boolean

Returns TRUE if the String vExpr contains only uppercase letters.

An uppercase letter is one of the following characters: [ ABCDEFGHIJKLMNOPQRSTUVWXYZ ]

Other characters than these are not considered as uppercase, especially not uppercase are "ÄÖÜÉ"

Examples

PRINT IsUCase("GAMBAS")

True

PRINT IsUCase("Cool")

False

See also

Character Test Functions