Previous Topic: InStr - Scan a String for the occurrence of a SubstringNext Topic: Left - Return the Leftmost n Characters from the String


LCase - Convert Uppercase Letters to Lowercase Letters

Valid on NetWare, Symbian OS, UNIX, Windows and Windows CE

The LCase function converts uppercase letters in the s1 string to lowercase letters. No other characters are affected. There is no restriction to the ASCII code table.

Function format:

Lcase (s1 as String) as String
s1

Identifies the string to be converted.

The function returns the converted string.

Example:

This example displays a text in uppercase and lowercase.

Rem 
Dim text As String
Text="Little ABC"

Print("LCase : " + LCase(text)) 'little abc

Print("UCase : " + UCase(text)) 'LITTLE ABC