toLower (Calculation expression – convert to lower case)
See also: isEmpty (Prüfung auf leer), ifEmpty
The $toLower function converts all letters from the passed text to lowercase and returns the new text.
Syntax
$toLower(text)
Parameter
Name |
Description |
text |
A text which should be converted into lowercase letters |
Return value
Returns the passed text in lowercase letters
Example
Syntax |
Result |
$toLower(Jonas Abend) |
'jonas abend' |
$toLower(JONAS ABEND) |
'jonas abend' |
$toLower(jonas abend) |
'jonas abend' |
$toLower() |
"" |