12-04-2022, 05:17 AM
Not much to say here. LCASE$ just converts any uppercase characters in a string to lowercase. LCASE$(mystring$)
The most obvious use for LCASE$ is an input routine...
The code above allows the user to type either "y" or "Y" to get a printed response."
Anyway, not much ELSE to see here; besides, it's Sunday, and God takes this day off. Me, I take a 1/2 day!
Pete
The most obvious use for LCASE$ is an input routine...
Code: (Select All)
PRINT "Was this information helpful? Y/N"; ans$
DO
_LIMIT 30
mykey$ = INKEY$
IF LCASE$(mykey$) = "y" THEN PRINT "You darn tootin' it waz ya mangy polecat!"
LOOP
The code above allows the user to type either "y" or "Y" to get a printed response."
Anyway, not much ELSE to see here; besides, it's Sunday, and God takes this day off. Me, I take a 1/2 day!
Pete