RTrim - script and chart function
RTrim() returns the input string trimmed of any trailing spaces.
Syntax:
RTrim(text)
Return data type: string
Examples and results:
| Example | Result |
|---|---|
| RTrim( ' abc' ) | Returns ' abc' |
| RTrim( 'abc ' ) | Returns 'abc' |