TRIM( TEXT )

Placeholder Tooltip Replace With
TEXT t: Text A text value, such as a Text variable.

Returns a Text value

You can use the TRIM function to remove any white space characters from the beginning and end of a Text variable, for example:

 

          The client, Mary Rogers, has approved...          

would be returned as:

 

The client, Mary Rogers, has approved...

TRIM( TEXT ) is equivalent to STRIP( TEXT, " \t\l", TRUE, TRUE ). See STRIP( TEXT, TEXT, TRUE_FALSE, TRUE_FALSE ) for more information.