Description
The lower function returns the provided string converted to lowercase.
Cannot be persisted using persist.
Syntax
lower(string)
Arguments
| Argument | Description |
|---|---|
string |
The string to be converted to lowercase. |
Return Types
The function returns the converted string in lowercase.
Examples
| Description | Formula | Result |
|---|---|---|
| String in lowercase |
lower("Smenso")
|
"smenso" |
| String with mixed uppercase and lowercase letters |
lower("ProJekT TIteL")
|
"projekt titel" |
| Empty string |
lower("")
|
"" |
Notes
- The function does not affect special characters or numbers - they remain unchanged.
- The function cannot be persisted.
Comments
0 comments
Please sign in to leave a comment.