ConcatComma

Use ConcatComma to generate a single string with values separated by commas.

ConcatComma is a helper function that can be used to input an array of values and output a single string that contains commas separated values. ConcatComma requires a minimum of 1 value and a maximum of 20.

Syntax

ConcatComma("<value 1>", "<value 2>", "<value 3>", [...])

Argument

Description

Required/Optional

Value

The value that you want to comma-splice join.

Required

Example

Example input

ConcatComma("computer", "laptop", "tablet", "mobile")

Example output

"computer,laptop,tablet,mobile"