Returns a copy of a string without trailing spaces.
[ s = ] RTrim ( sStr )
The RTrim procedure syntax has the following parts:
Name |
Type |
Description |
s |
BString |
The result string |
sStr |
Val BString |
Input string |
White spaces includes '\r', '\n', '\t'. '\v', ' '. The function removes also nul characters from the right side (ATEasy v14/2026).
Print RTrim("ATEasy ") ! This will print "ATEasy"