Action
Converts upper-case characters into lower-case characters.
Syntax
sConverted = Lower (sToConvert)
Variable
|
Description
|
sConverted
|
The converted string. STRING.
|
sToConvert
|
The string to convert. STRING.
|
Notes
Lower converts uppercase and mixed-case strings into lowercase characters. When
there are no uppercase characters in sToConvert, Lower returns
sToConvert unchanged.
Lower is
locale sensitive. For example, when SetLocale is used in the script, Lower works as expected.
Lower
emulates the application of the C library function _wcslwr to a
specified string.
Example
STRING sTitle = "Autumn in December"
Print ("Normal case: ", sTitle)
Print ("Uppercase: ", Upper (sTitle))
Print ("Lowercase: ", Lower (sTitle))