UCASE
Convert all the characters of a string to upper case.
WebVue support - Yes.
Syntax
StrVal = UCASE(Input);
Return type: STR.
Argument |
Meaning |
Input |
The string to be converted. Type STR. |
Example
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