1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 21:40:25 +00:00
QB64-PE/internal/help/LCASE$.txt

28 lines
622 B
Plaintext

The {{KW|LCASE$}} function changes the uppercase letters of a {{KW|STRING}} to lowercase.
{{PageSyntax}}
:''result$'' = {{KW|LCASE$}}({{Parameter|text$}})
{{PageDescription}}
* Normally used to guarantee that user input is not capitalized.
* Will not affect non alphabet string characters.
{{PageExamples}}
:The following code
{{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}}
* {{KW|UCASE$}}
{{PageNavigation}}