apoc.text.capitalize
Function
apoc.text.capitalize(text String)
- capitalizes the first letter of the given string.
Usage Examples
Capitalise the first letter of the word
RETURN apoc.text.capitalize("neo4j") AS output;
output |
---|
"Neo4j" |
Was this page helpful?