apoc.text.decapitalizeAll
Function
apoc.text.decapitalizeAll(text String)
- turns the first letter of every word in the given string to lower case.
Usage Examples
Decapitalize the first letter of all words
RETURN apoc.text.decapitalizeAll("Graph Databases") AS output;
output |
---|
"graph databases" |
Was this page helpful?