ANYPARM

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

Back to Main Index


Syntax:     ANYPARM(anything)

Defn:       A CI evaluator function that accepts all characters,
            including commas, quote marks, right parentheses, etc.
            and treats them as a single string value.

            NOTE: the anyparm() function must be the only or right-most
            function in a command line.  Also, anyparm() cannot be
            nested inside other functions.  For example,
                 lft(anyparm(...),1)
            and
                 anyparm(...) + "foo"
            are NOT supported.

Type:       String

Example:    CALC anyparm(abc'def,gh"i)j)k;lm)
Result:     abc'def,gh"i)j)k;lm
Example:    ANYPARM p1
            setvar _infostr anyparm(!p1)
            run prog; info="![quote(_infostr)]"

Back to Main Index