IF TEST = 1 { ASSIGN VarString = " Spider-man " } //trim -- Returns a string with all leading and trailing white space characters //removed. White space includes spaces, tabs, and line breaks. ASSIGN TrimRes = VarString.trim //ltrim -- Returns a string with all leading white space characters removed. See trim. ASSIGN LTrimRes = VarString.ltrim //rtrim -- Returns a string with all trailing white space characters removed. See trim. ASSIGN RTrimRes = VarString.rtrim