$DEPADL
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+