$Strip: Difference between revisions
Jump to navigation
Jump to search
(Automatically generated page update) |
|
(No difference)
|
Latest revision as of 19:24, 29 July 2014
The $STRIP function returns the contents of an argument with leading zeros suppressed. $STRIP, like $PAD, is useful for report formatting.
Example
$STRIP('055449825') equals '55449825' $STRIP('00000') equals
If a character other than zero is in the first position of the argument, zeros within the string are not removed. For example:
$STRIP(' 055449825') equals ' 055449825'