Built-in Functions → lower

lower() is a string function that returns all the alphabetic characters in its string argument in lower case.

Signature

lower(string exp)

The following table illustrates the lower() parameter:

ParameterDescription
string expan expression evaluating to string

Returns

string

Example

lower("Sally")

In this example, lower returns "sally".