apoc.coll.split
Procedure APOC Core
apoc.coll.split(list,value) | splits collection on given values rows of lists, value itself will not be part of resulting lists
Usage Examples
The following splits a collection on the value .
:
CALL apoc.coll.split(["Hello", "World", ".", "How", "are", "you", "?"], ".");
Value |
---|
["Hello", "World"] |
["How", "are", "you", "?"] |
Was this page helpful?