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:
Parameter | Description |
---|---|
string exp | an expression evaluating to string |
Returns
string
Example
lower("Sally")
In this example, lower
returns "sally".