1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00
QB64-PE/internal/help/UCASE$.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

31 lines
715 B
Plaintext

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|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}}
<