Documentation Index

Fetch the complete documentation index at: https://docs.lobster-world.com/llms.txt

Use this file to discover all available pages before exploring further.

toLower (Calculation expression – convert to lower case)

Prev Next

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

text

A 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()

""