$DEPADR: Difference between revisions
Jump to navigation
Jump to search
Automatically generated page update |
(No difference)
|
Latest revision as of 13:18, 20 April 2013
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