Reference: trim
trim(s) returns the string s with all leading and ending whitespace characters (e.g. spaces) removed. Thus, trim(s) = trimLeft(trimRight(s)) for all strings s.
trim(s) returns the string s with all leading and ending whitespace characters (e.g. spaces) removed. Thus, trim(s) = trimLeft(trimRight(s)) for all strings s.