You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
##Description
The Str.Upper function takes the string s and returnsa string in which all the lower case letters are converted to upper case. For example, Str.Upper ("ABC123def") returns"ABC123DEF".
##Example
This program obtains lines of text from the user and outputs thelines converted to upper case.
var line : string
loop
put "Enter a line of text (empty to quit): " ..
get line : *
exit when line = ""
put "The upper case version: ", Str.Upper (line)
end loop
##Status
Exported qualified.
This means that you can only call the function by calling Str.Upper, not by calling Upper.