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 – WeekDay() and WeekDayName()
  2. VBA-Excel: Date-Time Functions – DateAdd()
  3. Excel-VBA : Range - Lock/Unlock Specific Cells
  4. VBA Excel - Cells, Ranges and Offset: Refer Range by using A1 Notations
  5. VBA-Excel: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)