STR_REMOVE_WHITESPACE

A string that is the result of removing all leading and trailing spaces (blank spaces, tab spaces) from the input string.

Format

STR_REMOVE_WHITESPACE (Input String)

Argument

 
Input String
Text string.

Example

The following function returns the string without the spaces before and after it:
 
Function
STR_REMOVE_WHITESPACE("   It's summer    ")
Result
It's summer