LCASE$
From QB64 Wiki
The LCASE$ function changes the uppercase letters of a STRING to lowercase.
- result$ = LCASE$(text$)
Description:
- Normally used to guarantee that user input is not capitalized.
- Will not affect non alphabet string characters.
Code Examples:
- The following code
PRINT "Do you want to continue? (y/n)" DO K$ = LCASE$(INKEY$) LOOP UNTIL K$ = "y" OR K$ = "n"
See also: