rtrim(str: string, [chars: const string]?) -> string

rtrim removes trailing characters from a string.

The default value for chars is ' ' (a single space character). If chars is not specified, rtrim removes all trailing spaces.

See also trim, ltrim.

Domain

This is a scalar function (calculates a single output value for a single input row).

Categories

Examples

make_col trimmed_kind:rtrim(bundle_kind, ' ')

Removes trailing spaces from bundle kinds