LCASE
Convertit tous les caractères d'une chaîne en minuscules.
Support WebVue - Oui.
Syntaxe
StrVal = LCASE(Input);
Type de retour : STR
|
Argument |
Définition |
|
Input |
Chaîne de caractères à convertir. Type STR. |
Exemple
SUB Main()
DIM strResult as Str;
DIM strString as Str;
strString = "STRING IN CAPITALS";
strResult = LCase( strString );
PRINT("Result is: ", strResult );
'displays "Result is: string in capitals"
END SUB