Be the first user to complete this post

  • 0
Add to List

VBA-Excel: String Functions – Trim()

Description: 

The Trim function removes spaces on the left and right side of a string.

Format:

Trim (strMainString)

Arguments:
  • strMainString
    • Mandatory
    • Type: String
    • String whose both side spaces needs to be trimmed.

Function FnTrim()

   Dim strMainString

   strMainString = "   Sumit Jain  "

   MsgBox "Hello" & Trim(strMainString) & "Trimmed both sides."

End Function
Trim
Trim

Also Read About  Other String() Functions

INSTR()                       |                         InstrREV()                       |                        LCase()

UCase()                      |                         Left()                                |                        Right()

LTrim()                        |                         Mid()                                 |                        Trim()

RTrim()                       |                        Replace()                          |                        Space()

Len()                           |                        StrComp()                         |                        String()



Also Read:

  1. VBA-Excel: Date-Time Functions – CDate()
  2. VBA-Excel: Array Functions – Join() – Converts Array to String
  3. VBA-Excel : Strings Functions – Ucase
  4. VBA-Excel: Date-Time Functions - Timer()
  5. VBA-Excel: Date-Time Functions – IsDate()