See also: isEmpty (Check for empty), ifEmpty
The $toLower function converts all letters from the passed text to lowercase and returns the new text.
Tooltip
Syntax: $toLower(text)
Parameter
Description
textA text which should be converted into lowercase letters
Returns the passed text stripped of leading and trailing whitespaces.
Example: $toLower(Jonas Abend) – returns 'jonas abend'
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() | "" |