This function returns a given text after removing leading and trailing blanks (white spaces and tabs).


trim(text) #Output: Text



Parser expressionDescription


%{trim(" Hello World!           ")}


This example returns:

Hello World!



Parameters used in this function

ParameterInput (data type)Description
text

Any given text.



This function returns a



Use cases and examples



Short description

Removes leading and trailing blanks (white spaces and tabs) from a text.

Output