Tutorials References Menu

VBScript Trim Function


❮ Complete VBScript Reference

The Trim function removes spaces on both sides of a string.

Tip: Also look at the LTrim and the RTrim functions.

Syntax

Trim(string)

Parameter Description
string Required. A string expression

Example

Example

<%

fname=" Jack "
response.write("Hello" & Trim(fname) & "and welcome.")

%>

The output of the code above will be:

HelloJackand welcome.
Show Example »

❮ Complete VBScript Reference