Returns a copy of the input string without the trailing space characters.
| Syntax: | 
|---|
| value = TrimRightSpaces( inputString ) OR value = RTrim(inputString ) ' Short form usage: "RTrim". | 
| Parameter: | Description: | 
|---|---|
| inputString | String expression that needs the spaces on the right to be trimmed. | 
| value | Same string expression minus the trailing Space characters. | 
| Example: | 
|---|
| value = TrimRightSpaces( " Hello " ) ' Returns " Hello" value = RTrim( " Hello " ) ' Returns " Hello" 
 Results:See example comments. | 
| Links: | 
|---|
| See Also: | 
| Edit Time: 9/18/2020 1:59:30 PM | Topic ID#: 36 |