apoc.text.decapitalize

Function

apoc.text.decapitalize(text String) - turns the first letter of the given string from upper case to lower case.

Signature

apoc.text.decapitalize(text :: STRING?) :: (STRING?)

Input parameters

Name Type Default

text

STRING?

null

Usage Examples

Decapitalize the first letter of the string
RETURN apoc.text.decapitalize("Graph Database") AS output;
Table 1. Results
output

"graph Database"