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