Valid on NetWare, Symbian OS, UNIX, Windows and Windows CE
The UCase function converts lowercase letters in the s1 string to uppercase letters. No other characters are affected. There is no restriction to the ASCII code table.
This string manipulation function has the format:
UCase(s1 as String) as String
Identifies the string that is 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.
|
|