The Trim function trims all leading and trailing spaces and replaces continuous sets of white space characters by a single space.
Parameter: string
The string to trim and normalize. This can come from a source node, the result of another function, or a value you specify
Returns: string
The trimmed and normalized parameter.
Input String Equals... | The Trim Function Returns... |
---|---|
' The string to trim and normalize. ' | 'The string to trim and normalize.' |
' first line second line third line ' |
'first line second line third line' |