apoc.text.join

Function

apoc.text.join(texts LIST<STRING>, delimiter STRING) - joins the given STRING values using the given delimiter.

Signature

apoc.text.join(texts :: LIST<STRING>, delimiter :: STRING) :: STRING

Input parameters

Name Type Default

texts

LIST<STRING>

null

delimiter

STRING

null

Usage Examples

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

"Hello World"