Method
Trim
Description
Returns the string passed with leading and trailing whitespaces removed.
Usage
result = Trim(sourceString)
OR
result = stringVariable.Trim
Part |
Type |
Description |
---|---|---|
result |
SourceString with leading and trailing whitespaces removed. |
|
sourceString |
The source, a copy of which, to be returned with leading and trailing whitespaces removed. |
|
stringVariable |
Any variable of type String. |
Notes
Trim uses this list of unicode "whitespace" characters.
Sample code
This example removes the whitespaces from either side of the string passed:
Var s As String
s = Trim(" Hello World ") // Returns "Hello World"
s = " Hello World "
s = s.Trim // Returns "Hello World"
Compatibility
All project types on all supported operating systems.
See also
Asc, Chr, String.IndexOf, Left, Len, String.TrimLeft, Mid, Right, String.TrimRight functions.