_@CAT

_@CAT function is used in a Logic Template to combine two or more text strings into a single text string. The individual strings to be concatenated are passed to the function, as arguments, in the order to be processed. The strings being concatenated are joined end-to-end. No blanks are inserted or removed from between individual strings.

Returns

Description

The newly formed string.

Format
_@CAT
( string_1, string_2 [, string_3 [ ... ]]);

Argument

Description

string_1

The first string literal or the name of the first string data field to be included.

string_2

The second string literal or the name of the second string data field to be included.

string_3

The third string literal or the name of the third string data field to be included.

...

Continue in like manor to add string literals or string data fields.

Example
//Create a new file path using _@SUBSTR with the base path "/data/test/" and the file name from the orginal path

NewPath = _@CAT( "/data/test", _@SUBSTR( Path, 16, 255 ) );