Vba Remove Spaces

[Solved] Vba Remove Spaces | Swift - Code Explorer | yomemimo.com
Question : vba remove spaces

Answered by : vastemonde

Dim s As String
s = " abc "
Debug.Print "|" & LTrim(s) & "|" ' |abc |
Debug.Print "|" & RTrim(s) & "|" ' | abc|
Debug.Print "|" & Trim(s) & "|" ' |abc|

Source : | Last Update : Sat, 20 Feb 21

Answers related to vba remove spaces

Code Explorer Popular Question For Swift