apoc.text.join

Function

apoc.text.join(texts [String], delimiter String) - joins the given strings using 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"