apoc.text.capitalize
Function APOC Core
apoc.text.capitalize(text) YIELD value - capitalise the first letter of the word
Usage Examples
Capitalise the first letter of the word
RETURN apoc.text.capitalize("neo4j") AS output;
output |
---|
"Neo4j" |
Was this page helpful?