Skip to content
github-actions[bot] edited this page Jun 16, 2022 · 7 revisions

The UCASE$ function outputs an all-uppercase version of a STRING.

= UCASE$()
  • Used to guarantee that all alphabetical characters in a STRING are capitalized.
  • Does not affect non-alphabetical characters.
Example: The following code guarantees that all letter key entries are capitalized: "Do you want to continue? (y/n)"
    K$ = {{Cl|UCASE$}}({{Cl|INKEY$}})

K$ = "Y" K$ = "N"

Clone this wiki locally