RTRIM

Generated from C.60.01 /SYS/PUB/CICAT last modified on Thu Jan 11 09:18:52 2001

Back to Main Index


Syntax:     RTRIM(string[,trimstr])

Defn:       A CI evaluator function that trims the right end
            of a string. Default trimstr is a blank.

Type:       String

Example:    rtrim('abc  ')+'X'
Result:     abcX
Example:    rtrim('abc...','.')+"X"
Result:     abcX

Back to Main Index