RTrim$

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.


Examples

PRINT "<"; RTrim$("Gambas  "); ">"

<Gambas>


PRINT "<"; RTrim$(" Gambas  "); ">"

< Gambas>


See also

LTrim$ | Left$ | Lower$ / LCase$ | Mid$ | RTrim$ | Replace$ | Right$ | Space$ | Split | String$ | Subst$ | Trim$ | Upper$ / UCase$