Upper
Description
This function converts the string to uppercase.
Syntax
string Upper(string str$)$
Parameters
str
- is the string that you want to convert to uppercase.
Return
Return the string that has been converted to uppercase.
Example
string str1$ = "abcde"; string str2$ = Upper(str1$)$; str2$ = ;//should be "ABCDE"