Result = RTrim$ ( String )
Strips white spaces from the right of a string. A white space is any character whose ASCII code is lower or equal than 32.
Example :
PRINT "<"; RTrim$("Gambas "); ">" => <Gambas> PRINT "<"; RTrim$(" Gambas "); ">" => < Gambas>