apoc.text.join

Details

Syntax

apoc.text.join(texts, delimiter)

Description

Joins the given STRING values using the given delimiter.

Arguments

Name

Type

Description

texts

LIST<STRING>

The list of strings to be concatenated using the given delimiter.

delimiter

STRING

The given delimiter to join the given strings with.

Returns

STRING

Usage Examples

RETURN apoc.text.join(['Hello', 'World'], ' ') AS output;
Results
output

"Hello World"