NAME

lcase$ - convert upper case to lower case

SYNOPSIS

v$ = lcase$(StrExpr)

DESCRIPTION

Lcase$ returns a copy of the string StrExpr in which each occurrence of an upper case character has been replaced with its lower case equivalent. 

The opposite conversion is performed by ucase$

EXAMPLE

The program
	a$ = "The Party of the First Part partied in the First Part."
	print lcase$(a$)
produces
	the party of the first part partied in the first part.

SEE ALSO

ucase$

from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber