Trim
This Flow Script tutorial explains how to use the Trim function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the Trim function with syntax and examples.
The Trim function removes whitespace characters before and after the string.
The syntax for the Trim function is:
Trim(input)
input - the string from which the whitespace is removed.
The Trim function returns a string.
Let's look at some Trim function examples and explore how to use the Trim function.
Trim(" hello world ")
Result: hello worldLast updated
Was this helpful?
Was this helpful?