apoc.text.join
Function
apoc.text.join(texts [String], delimiter String)
- joins the given strings using the given delimiter.
Usage Examples
RETURN apoc.text.join(['Hello', 'World'], ' ') AS output;
output |
---|
"Hello World" |
Was this page helpful?