Rebooting the QBasic we all know and love!
Removes trailing spaces from a string expression.
RTRIM$(string_expression)
RTRIM$
string_expression is any string expression.
a$ = "AAAA " b$ = "BBBB" PRINT RTRIM$(a$); b$
Resulting in:
AAAABBBB