Converts the string sStr to the upper case string.
[ s = ] UCase ( sStr )
The UCase procedure syntax has the following parts:
|
Name |
Type |
Description |
|
s |
BString |
A converted string |
|
str |
Val BString |
String to convert |
This function converts alphabetical characters only. Other characters are not changed.
Print UCase("Ab12Cd")
! This will print "AB12CD"