apoc.text.slug
Function APOC Core
apoc.text.slug(text, delim) - slug the text with the given delimiter
Usage Examples
RETURN apoc.text.slug("Neo4j Aura") AS output;
output |
---|
"Neo4j-Aura" |
The default delimiter is -
.
We can, however, pass in a custom delimiter as the second parameter:
RETURN apoc.text.slug("Neo4j Aura", ".") AS output;
output |
---|
"Neo4j.Aura" |
Was this page helpful?