Rtrim
Jump to navigation
Jump to search
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
RTrim(string)
Description
RTrim returns string with all trailing spaces removed. The required parameter, string, is any valid string expression.
Example
Rem RTrim Example 'RTrim trims all trailing spaces Dim Spacey Spacey = "K " Print "(" & Spacey & ")" Print "(" & RTrim(Spacey) & ")"
Output
(K ) (K)