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"