Hierarchy

  • Rtrim

Properties

Properties

$rtrim: {
    chars?: StringExpression<string>;
    input: StringExpression<string>;
}

Removes whitespace or the specified characters from the end of a string.

Type declaration

  • Optional chars?: StringExpression<string>

    The character(s) to trim from the beginning of the input.

    The argument can be any valid expression that resolves to a string. The $rtrim operator breaks down the string into individual UTF code point to trim from input.

    If unspecified, $rtrim removes whitespace characters, including the null character. For the list of whitespace characters, see Whitespace Characters.

  • input: StringExpression<string>

    The string to trim. The argument can be any valid expression that resolves to a string. For more information on expressions, see Expressions.

Generated using TypeDoc