apoc.text.decapitalize
Function APOC Core
apoc.text.decapitalize(text) YIELD value - decapitalize the first letter of the word
Usage Examples
Decapitalize the first letter of the string
RETURN apoc.text.decapitalize("Graph Database") AS output;
output |
---|
"graph Database" |
Was this page helpful?