Trim
- Last UpdatedJul 18, 2023
- 1 minute read
Strips any leading and trailing spaces from Str variable.
Syntax
Trim(Str)
Str:
A string or expression that can represent a valid text value.
Return Value
Returns a String.
Related Functions
Example
Dim strTest as String
Dim strResult as String
Dim lngStartLength as Long
Dim lngFinishLength as Long
strTest = " VBA "
lngStartLength = Len(strTest)
' returns 9
strResult = Trim(strTest)
' returns "VBA"
lngStringLength = Len(strResult)
' returns 3