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