Rtrim: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 25: | Line 25: | ||
== Related Items == | == Related Items == | ||
[[ltrim| | [[ltrim|LTrim]], [[trim|Trim]] | ||
[[Category:Language Reference]] | [[Category:Language Reference]] |
Revision as of 01:36, 24 August 2012
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)