Upper-func
This function converts the string to uppercase.
string Upper(string str$)$
str
Return the string that has been converted to uppercase.
string str1$ = "abcde"; string str2$ = Upper(str1$)$; str2$ = ;//should be "ABCDE"
Lower