The '''UCASE$''' function changes the lowercase letters of a {{KW|STRING}} to uppercase. {{PageSyntax}} :''result$'' = '''UCASE$('''{{Parameter|text$}}''')''' {{PageDescription}} * Used to guarantee that all alphabetical letters in a [[STRING]] are capitalized. * Will not affect non alphabet string characters. Will not shift key characters. ''Example:'' The following code guarantees that all letter key entries are capitalized: {{CodeStart}}{{Cl|PRINT}} "Do you want to continue? (y/n)" {{Cl|DO...LOOP|DO}} K$ = {{Cl|UCASE$}}({{Cl|INKEY$}}) {{Cl|DO...LOOP|LOOP}} {{Cl|DO...LOOP|UNTIL}} K$ = "Y" {{Cl|OR}} K$ = "N" {{CodeEnd}} {{PageSeeAlso}} * [[LCASE$]] {{text|(lower case)}} * [[INKEY$]] * [[INPUT$]] {{PageNavigation}}