joinarray() Function

Concatenates the elements of an array together into one string and inserts a string separator between each element.

Syntax

joinarray( array, [separator] )

array: (Any Type Array) An array of elements to be concatenated.

separator: (Text) A string that will be inserted between each element of the given array.

Returns

Text

Notes

This function works with any array type, performing a string conversion on each element if necessary.

If no separator value is defined, then a default empty text is used.

If an array with only one element is entered as the array argument, the function will return only the element without the separator value.

Examples

joinarray(pv!processVar3, "|") returns 1|2|3|4 where pv!processVar3 is a process variable which holds the number array {1, 2, 3, 4}

Open in Github Built: Fri, Nov 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK