DataBasic Reference > Statements and Intrinsic Functions > C > CATS Function

Comment on this topic

Documentation Comments

Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.

RealityV15.1Online Documentation (MoTW) Revision 7

CATS Function (DataBasic) (m618703+cats_f.htm)

To

Reality

Version

Topic

Submitted by

Company

Location

Email address

Comment

 

 

CATS Function

Concatenates the elements in two dynamic arrays.

Syntax

CATS(dynArray1, dynArray2)

Syntax Elements

dynArray1, dynArray2
DataBasic expressions that evaluate to dynamic arrays.

Return Value

A dynamic array formed by combining dynArray1 and dynArray2. Each element contains the result of concatenating the element in dynArray1 with the corresponding element in dynArray2.

See Also

SPLICE function.

Example

ARY1 = 100:@AM:200:@AM:300
ARY2 = "X":@AM:"Y":@AM:"Z"
NEWARY = CATS(ARY1, ARY2)

Sets NEWARY to "100XAM200YAM300Z".

RealityV15.1 (MoTW) Revision 7Comment on this topic