Trims characters from the beginning and/or end of a string.
Result := Trim(String, OmitChars := " `t") Result := LTrim(String, OmitChars := " `t") Result := RTrim(String, OmitChars := " `t")
Any string value or variable. Numbers are not supported.
An optional list of characters (case sensitive) to exclude from the beginning and/or end of String. If omitted, spaces and tabs will be removed.