snowflake.snowpark.functions.rtrimmed_length¶
- snowflake.snowpark.functions.rtrimmed_length(string_expr: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns the length of the input string after removing trailing whitespace characters.
- Parameters:
string_expr (ColumnOrName) – The string expression to calculate the right-trimmed length for.
- Returns:
The length of the string after removing trailing whitespace.
- Return type:
- Examples::