Table of Contents

RTrim (Function)

Format

rtrim ( string_expression )

return string_expression

Description

The RTrim function removes all whitespace characters from the right end of a string.
LTrim trims the left end of the string and Trim removes all whitespace characters from both the beginning and ending of a string

Notes

Whitespace means the ASCII characters chr(9) - Horizontal Tab, chr(10) - Newline, chr(11) - Vertical Tab, chr(12) - Formfeed, chr(13) - Carriage Return, ' ' - Space, and many others characetrs from UNICODE like: chr(0xA0) - No-break space, chr(0x2009) - Thin Space, and others.

See Also

2016/01/01 22:42

History

1.99.99.20New To Version