Format
string1=RTRIM$(string2)
Description
This statement will remove all trailing spaces from string2 and store the
resulting string in string1.
Example
A$=RTRIM$("XYZ ")
After the execution of this statement, the variable "A$" will contain
"XYZ".
See Also
|