Message Transform Formatters
object MessageTransformFormatters
Provides the possibility to transform the letters to uppercase, lowercase or capitalize (uppercase the first letter, rest lowercase).
Format:
{PARAMETER, FORMAT_OPTION, {TEXT_WITH_PATTERNS}}Content copied to clipboard
PARAMETER: The parameter to format. Can be "~" if TEXT_WITH_PATTERNS is set.FORMAT_OPTIONuppercase: transform all letters to uppercase
lowercase: transform all letters to lowercase
capitalize: transform the first letter to uppercase
TEXT_WITH_PATTERNS: Optional. If not given, the value of PARAMETER is used. If given: the text including patterns is evaluated and transformed afterward.
Examples:
{0, capitalize } is the best!Content copied to clipboard
Result for "ice": Ice is the best!
{~, capitalize, {{0}+{1}} } is the best!Content copied to clipboard
Result for ("ice", "tea"): Ice+tea is the best!