Trim

Remove leading and trailing spaces from a string.

Syntax
      Trim(string)

Key
   string    A text string or string expression.

The Trim() function can be used in VBA or in an SQL query.

Trim() will return a Variant, you can also use Trim$() to return a String.
You should use Trim() if there is any chance of a Null value, since assigning Null to a String will raise an error.

Examples

Dim strDemo as String
strDemo = Trim("   Talent is just a skill you're willing to practice  ")
Returns "Talent is just a skill you're willing to practice"

“The hands of every clock are shears, trimming us away scrap by scrap, and every time piece with a digital readout blinks us towards implosion” ~ Dean Koontz

Related

LTrim - Remove leading spaces from a string.
RTrim Remove trailing spaces from a string.


 
Copyright © 1999-2024 SS64.com
Some rights reserved