Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

VBScript RTrim Function


❮ Complete VBScript Reference

The RTrim function removes spaces on the right side of a string.

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

Syntax

RTrim(string)

Parameter Description
string Required. A string expression

Example

Example

<%

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

%>

The output of the code above will be:

Hello Jackand welcome.
Show Example »

❮ Complete VBScript Reference