R/duckdb-funs.R
rtrim.Rd
Removes any occurrences of any of the characters from the right side of the string. characters defaults to space.
characters
string
space
VARCHAR
rtrim(string = VARCHAR)
rtrim(string = VARCHAR, characters = VARCHAR)
rtrim(' test ') rtrim('>>>>test<<', '><')