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