apoc.text.decapitalize
Function
apoc.text.decapitalize(text String)
- turns the first letter of the given string from upper case to lower case.
Usage Examples
Decapitalize the first letter of the string
RETURN apoc.text.decapitalize("Graph Database") AS output;
output |
---|
"graph Database" |
Was this page helpful?