strcat_array()

Learn how to use the strcat_array() function to create a concatenated string of array values using a specified delimiter.

Creates a concatenated string of array values using a specified delimiter.

Syntax

strcat_array(array, delimiter)

Parameters

NameTypeRequiredDescription
arraydynamic✔️An array of values to be concatenated.
delimeterstring✔️The value used to concatenate the values in array.

Returns

The input array values concatenated to a single string with the specified delimiter.

Examples

Custom delimeter

print str = strcat_array(dynamic([1, 2, 3]), "->")

Output

str
1->2->3

Using quotes as the delimeter

To use quotes as the delimeter, enclose the quotes in single quotes.

print str = strcat_array(dynamic([1, 2, 3]), '"')

Output

str
1"2"3