Trim

From Auto Hotkey

Trim

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")

Parameters

String

Any string value or variable. Numbers are not supported.

OmitChars

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.

Examples

text := "  text  "
MsgBox Format("No trim:`t'{1}'`nTrim:`t'{2}'`nLTrim:`t'{3}'`nRTrim:`t'{4}'"
       , text, Trim(text), LTrim(text), RTrim(text))
MsgBox LTrim("00000123", "0")