Converts all of alphabetic characters to upper-case.
toupper <strvar> <string>
Converts all of alphabetic characters in <string> to upper-case, and returns it in the string variable <strvar>.
; The string 'ABCDEFGH' is assigned to the variable "valstr". toupper valstr 'abCDefGH'