|
%acc() Function |
|
|
%acc() function is used to accumulate data within the given variable. This function can be used to concatenate strings or to increase/decrease numeric values. Syntax: %acc(target-symbol, accumulate-by-expression[, delimiter]) target-symbol A target symbol where accumulated data will be stored. accumulate-by-expression The value of the expression will be accumulated in variable. delimiter This optional parameter can be used when accumulating string data and it will be placed between accumulate-by-expression values. The delimiter is not placed for the first accumulation. Examples:
See @accfs() |