1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00
qb64/internal/help/LCASE$.txt
2021-04-25 19:40:25 -03:00

30 lines
696 B
Plaintext

The [[LCASE$]] function returns an all-lowercase version of a [[STRING]].
{{PageSyntax}}
:{{Parameter|result$}} = [[LCASE$]]({{Parameter|text$}})
{{PageDescription}}
* Normally used to guarantee that user input is not capitalized.
* Does not affect non-alphabetical characters.
{{PageExamples}}
''Example:'' The following code guarantees that all user letter entries will be lower case:
{{CodeStart}}{{Cl|PRINT}} "Do you want to continue? (y/n)"
{{Cl|DO...LOOP|DO}}
K$ = {{Cl|LCASE$}}({{Cl|INKEY$}})
{{Cl|DO...LOOP|LOOP}} {{Cl|DO...LOOP|UNTIL}} K$ = "y" {{Cl|OR}} K$ = "n"
{{CodeEnd}}
{{PageSeeAlso}}
* [[UCASE$]] {{text|(upper case)}}
* [[INKEY$]]
* [[INPUT$]]
{{PageNavigation}}