back to Table of Contents


LStrip$ & RStrip$ (function)

These functions will remove a range of defined chars before or after a string. The behavior in that is similar to LTRIM$/RTRIM$, but these functions are not limited to remove spaces and have different modes.


SYNTAX:

stripped$ = LStrip$ (mode%, arg$)
stripped$ = RStrip$ (mode%, arg$)

INPUTS:

mode% (INTEGER)

arg$ (STRING)


RESULT:

stripped$ (STRING)


MODE CONSTANTS:

stripZERO%

stripTAB%

stripSPACE%

stripQUOTE%

stripFIX%

stripWHITE%

stripALL%

SPECIAL MODES:

stripTEXT%

stripVALUE%


back to Table of Contents