$DEPADL

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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+