UCASE

Icône du lien vers le conceptVoir également

Convertit tous les caractères d'une chaîne en majuscules.

Support WebVue - Oui.

Syntaxe

StrVal = UCASE(Input);

Type de retour : STR

Argument

Définition

Input

Chaîne à convertir. Type STR.

Exemple

SUB Main()

DIM strResult as Str;

DIM strString as Str;

 

strString = "string in lower case";

strResult = UCase( strString );

PRINT("Result: ", strResult );

'Display "Result: STRING IN LOWER CASE"

END SUB