Trim Function
- 업데이트 날짜:2025-07-21
- 1분 (읽기 시간)
Trim Function
Syntax
String Trim(String untrimmedString, [String charsToTrim])
Return Value
The trimmed string.
Purpose
This function removes all leading and trailing whitespace or specified characters from a string.
Parameters
untrimmedString as String
The string to trim.
charsToTrim as String
(Optional) Pass a string containing specific characters to remove instead of white space.