string.join action

This trigger action will take an input array and will join the values by the delimiter into a string.

Action

This trigger action is found under the String heading.

Canvas

When dragged onto the canvas, the appearance of the action is a rectangle with two routing points.

The left routing point (red) is the failure route. This route will be taken if there is an error during execution.

The right routing point (green) is the success route. This route will be taken if action executes successfully.

Form

Parameters

Name

Type

Required

Descriptions

Input

String

Yes

An array of values.

Delimiter

String

Yes

The delimiter used to join individual values the Input array. For example: "," (comma).

Action variables

Name

Type

Description

$(action.X.value)

String

The resulting array. For example: "tag1,tag2" (using the example data provided in the parameters, above).