the
rtrim
of
factor
rtrim
(
expression )
Factor and expression yield string
s.
put rtrim(" Hello, world! ") -- yields " Hello, world!"
The rtrim
function trims all spaces, tabs, line breaks, control characters, line separators, and paragraph separators from the end of the given string
and returns the trimmed string.