strcat_array()

Creates a concatenated string of array values using specified delimiter.

Syntax

strcat_array(array, delimiter)

Arguments

  • array: A dynamic value representing an array of values to be concatenated.
  • delimeter: A string value that will be used to concatenate the values in array

Returns

Array values, concatenated to a single string.

Examples

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