Rtrim: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
RTrim(''string'') | |||
== Description == | |||
RTrim returns string with all trailing spaces removed. The required parameter, ''string'', is any valid string expression. | |||
== Example == | |||
<pre> | <pre> | ||
Rem RTrim Example | |||
' | 'RTrim trims all trailing spaces | ||
Dim Spacey | |||
Spacey = "K " | Spacey = "K " | ||
Print "(" & Spacey & ")" | |||
Print "(" & RTrim(Spacey) & ")" | |||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 23: | Line 23: | ||
</pre> | </pre> | ||
== Related Items == | |||
[[ltrim|LTRIM]], [[trim|TRIM]] | [[ltrim|LTRIM]], [[trim|TRIM]] | ||
[[Category:Language Reference]] |
Revision as of 03:02, 17 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)