toUpper (Calculation expression – convert to uppercase)

See also: isEmpty (Prüfung auf leer), ifEmpty

The $toUpper function converts all letters from the passed text to uppercase and returns the new text.

Syntax

$toUpper(text)

Parameter

Name

Description

text

A text which should be converted to uppercase letters.

Return value

Returns the passed text in uppercase letters.

Example

Syntax

Result

$toUpper(Jonas Abend)

'JONAS ABEND'

$toUpper(JONAS ABEND)

'JONAS ABEND'

$toUpper(jonas abend)

'JONAS ABEND'

$toUpper()

""