apoc.text.repeat
Function
apoc.text.repeat(item String, count Integer)
- returns the result of the given item multiplied by the given count.
Usage Examples
RETURN apoc.text.repeat('item', 5) AS output;
output |
---|
"itemitemitemitemitem" |
Was this page helpful?