apoc.text.join

Function APOC Core

apoc.text.join(['text1','text2',…​], delimiter) - join the given strings with the given delimiter.

Signature

apoc.text.join(texts :: LIST? OF STRING?, delimiter :: STRING?) :: (STRING?)

Input parameters

Name Type Default

texts

LIST? OF STRING?

null

delimiter

STRING?

null

Usage Examples

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

"Hello World"