Trim() / LTrim() / RTrim() [AHK_L 31+]

移除字符串的开始和/或末尾的某些字符.

NewString :=  Trim(String , OmitChars)
NewString := LTrim(String , OmitChars)
NewString := RTrim(String , OmitChars)

参数

String

任何字符串值或变量. 不支持数字.

OmitChars

如果省略, 则会移除空格和 tab. 否则, 请指定一个字符列表(区分大小写), 用来从 String 的开始和/或结尾部分移除这些字符.

返回值

这些函数返回指定字符串的裁剪版本.

示例

移除字符串左右两边的所有空格.

text := "  text  "
MsgBox % "No trim:`t '" text "'"
    . "`nTrim:`t '" Trim(text) "'"
    . "`nLTrim:`t '" LTrim(text) "'"
    . "`nRTrim:`t '" RTrim(text) "'"

移除字符串左边所有的零.

MsgBox % LTrim("00000123", "0")