apoc.text.capitalizeAll
Function
apoc.text.capitalizeAll(text String)
- capitalizes the first letter of every word in the given string.
Usage Examples
Capitalise the first letter of every word in the text
RETURN apoc.text.capitalizeAll("graph database") AS output;
output |
---|
"Graph Database" |
Was this page helpful?