CATS


The CATS function concatenates the corresponding elements in two dynamic arrays.

 

COMMAND SYNTAX

CATS(DynArr1, DynArr2)

 

SYNTAX ELEMENTS

DynArr1 and DynArr2 represent dynamic arrays.

 

NOTES

If one dynamic array supplied to the CATS function is null then the result of the CATS function is the non-null dynamic array.

 

EXAMPLES

X  = "a" : @VM : "b" : @VM : "c"
B = 1 : @VM : 2 : @VM : 3
Z = CATS(X, Y)

The variable Z is assigned the value:

a1 : @VM : b2 : @VM : c3

 

A = "a" : @SVM : "b" : @VM : "c": @VM : "d"
B = "x" : @VM : "y" : @SVM : "z"
C = CATS(A, B)

The variable C is assigned the value:

ax : @SVM : b : @VM : cy : @SVM : z : @VM : d


jBC