apoc.text.capitalizeAll
Function APOC Core
apoc.text.capitalizeAll(text) YIELD value - capitalise the first letter of every word in the text
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?