Contents - Index


LOWERCASE$

 

The LowerCase$ function accepts one string variable or string constant argument.  It returns a string in which all letters in the string are converted to lowercase.  It is usually not necessary to change the case of any strings as all string comparisons are case insensitive.  Only the display is changed.

 

Example:  E$=LowerCase$('EESy')

 

Return to String Functions