apoc.text.decapitalizeAll
Function APOC Core
apoc.text.decapitalizeAll(text) YIELD value - decapitalize the first letter of all words
Usage Examples
Decapitalize the first letter of all words
RETURN apoc.text.decapitalizeAll("Graph Databases") AS output;
output |
---|
"graph databases" |
Was this page helpful?