This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
LTrim, RTrim, and Trim Functions Example
This example uses the
LTrim function to strip leading spaces and the
RTrim function to strip trailing spaces from a string variable. It uses the
Trim function to strip both types of spaces.
Dim MyString, TrimString
MyString = " <-Trim-> " ' Initialize string.
TrimString = LTrim(
MyString)
' TrimString = "<-Trim-> ".
TrimString = RTrim(
MyString)
' TrimString = " <-Trim->".
TrimString = LTrim(RTrim(
MyString))
' TrimString = "<-Trim->".
' Using the Trim function alone achieves the same result.
TrimString = Trim(
MyString)
' TrimString = "<-Trim->".