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
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
|
Copyright © 2014 CA Technologies.
All rights reserved.
|
|