StrUpper
Converts a string to uppercase.
Syntax
StrUpper(String)
String:
The source string.
Return Value
The string (as uppercase).
Related Functions
Example
Variable=StrUpper("abcdef");
! Sets Variable to "ABCDEF".
Variable=StrUpper("AbCdEf");
! Sets Variable to "ABCDEF".
See Also