$DEPADL

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 $DEPADL function removes the designated characters from the left side of a specified string. For example:

Syntax

$DEPADL(%string,%remove)

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

Example:

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

results in A+B+C+