Skip to main content

Overview

The case transformation changes the case of text (uppercase, lowercase, or capitalize).

Syntax

case(<variable>, type="upper")

Parameters

ParameterTypeRequiredDescription
variablestringYesThe text to transform
typestringYesCase type: "upper", "lower", or "capitalize"

Examples

case(<variable>, type="upper")
case(<variable>, type="lower")
case(<variable>, type="capitalize")