apoc.text.join
Function APOC Core
apoc.text.join(['text1','text2',…], delimiter) - join the given strings with the given delimiter.
Usage Examples
RETURN apoc.text.join(['Hello', 'World'], ' ') AS output;
output |
---|
"Hello World" |
Was this page helpful?