LCASE$ - QB64 Wiki

LCASE$

From QB64 Wiki

Jump to: navigation, search

The LCASE$ function changes the uppercase letters of a STRING to lowercase.


Syntax:

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:



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page