strcat_array()
Creates a concatenated string of array values using specified delimiter.
Syntax
strcat_array(array, delimiter)
Arguments
- array: A
dynamicvalue representing an array of values to be concatenated. - delimeter: A
stringvalue 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 |
Feedback
Submit and view feedback for