TRIM

Removes leading, trailing and repeated whitespace from a text string

TRIM( string)

Removes leading, trailing, and repeated whitespace from a text string.

Arguments

Output

Outputs string without excess whitespaces

Example

TRIM("  leeroy   jenkins ")
>>leeroy jenkins   

Last updated