UCASE$: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
(Created page with "The UCASE$ function outputs an all-uppercase version of a STRING. {{PageSyntax}} :{{Parameter|result$}} = UCASE$({{Parameter|text$}}) {{PageDescription}} * Used to guarantee that all alphabetical characters in a STRING are capitalized. * Does not affect non-alphabetical characters. {{PageExamples}} ''Example:'' The following code guarantees that all letter key entries are capitalized: {{CodeStart}}{{Cl|PRINT}} "Do you want to continue? (y/n)" {{Cl|...") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 22: | Line 22: | ||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
* [[LCASE$]] | * [https://qb64phoenix.com/forum/showthread.php?tid=1232 Featured in our "Keyword of the Day" series] | ||
* [[LCASE$]] | |||
* [[INKEY$]] | * [[INKEY$]] | ||
* [[INPUT$]] | * [[INPUT$]] |
Latest revision as of 17:34, 25 May 2024
The UCASE$ function outputs an all-uppercase version of a STRING.
Syntax
- result$ = UCASE$(text$)
Description
- Used to guarantee that all alphabetical characters in a STRING are capitalized.
- Does not affect non-alphabetical characters.
Examples
Example: The following code guarantees that all letter key entries are capitalized:
PRINT "Do you want to continue? (y/n)" DO K$ = UCASE$(INKEY$) LOOP UNTIL K$ = "Y" OR K$ = "N" |
See also