Trim() / LTrim() / RTrim() [AHK_L 31+]
문자열의 앞뒤로부터 문자들을 걷어냅니다.
Result := Trim(String, OmitChars := " `t")
Result := LTrim(String, OmitChars := " `t")
Result := RTrim(String, OmitChars := " `t")
매개변수
- String
문자열 값이나 변수. 숫자는 지원하지 않습니다.
- OmitChars
String의 앞뒤로부터 배제할 선택적인 문자 리스트 (대소문자 구분). 생략되면, 스페이스와 탭이 제거됩니다.
예제
Trims all spaces from the left and right side of a string.
text := " text "
MsgBox % "No trim:`t '" text "'"
. "`nTrim:`t '" Trim(text) "'"
. "`nLTrim:`t '" LTrim(text) "'"
. "`nRTrim:`t '" RTrim(text) "'"
Trims all zeros from the left side of a string.
MsgBox % LTrim("00000123", "0")