Product DocumentationDeveloper GuidesODSL LanguageFunctionsAll FunctionstrimOn this pagetrimReturns a string with any space characters from the start or end of the string removedSyntaxstring = trim(string)Exampleprint trim(" This String ")This String```jsprint "[" + trim(" This String ") + "]"[This String]