%stringTrim()

Aliases%stringTrim( )
Parametersstring @value

    Returns the string with all leading and trailing space characters removed.

Example:

@text = " Spaces all around!! "
echo String: [@text]
echo String: [%stringTrim( @text )]

Output:

String: [ Spaces all around!! ]
String: [Spaces all around!!]