Converts
all uppercase characters within a specified string to lowercase characters.
Syntax
L
ower(
s
, [,
k
])
Parameters
Parameter
|
Description
|
s
|
The string to convert.
|
k
(Optional)
|
A string representing a valid locale. If
you do not include a value for
k
, the function
uses the ambient locale.
See
Locales
.
This
function only converts the Unicode characters U+41 through U+5A
(of the ASCII character set) as well as the characters U+FF21 through
U+FF3A (of the fullwidth character set)
|
Examples
The
following expressions are examples that use the
Lower
function:
Expression
|
Returns
|
Lower("ABC")
|
abc
|
Lower("21 Main St.")
|
21 main st.
|
Lower(15)
|
15
|
Lower(Address[0])
|
This example converts the first occurrence
of
Address
to all lowercase letters.
|
|
|
|