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.
This string manipulation function has the format:
Lcase (s1 as String) as String
Identifies the string to be converted.
The function returns the converted string.
Example: LCase function
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
|
Copyright © 2013 CA.
All rights reserved.
|
|