Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

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