Last updated 2 years ago
Was this helpful?
The Trim() function strips text of whitespace from both ends.
Trim()
This function is NOT SQL compatible. For more information about SQL compatibility, see our .
Returns a new text where both trailing and leading whitespaces are removed from text.
text
Trim(
)
Trim(" start with a space.") => "start with a space."
Trim(" start with a space.")
Trim(" start and end with spaces. ") => "start and end with spaces."
Trim(" start and end with spaces. ")
Trim("") => ""
Trim("")
a text