$DEPADR

From m204wiki
Revision as of 13:18, 20 April 2013 by Alex (talk | contribs) (Automatically generated page update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The $DEPADR function removes the designated characters from the right of a specified string.

Syntax

$DEPADR(%string,%remove)

The %remove characters are removed from the right of %string.

Example:

if %STRING = '+A+B+C+' then PRINT $DEPADR(%STRING,'+')

results in +A+B+C