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