apoc.text.decapitalize

Details

Syntax

apoc.text.decapitalize(text)

Description

Turns the first letter of the given STRING from upper case to lower case.

Arguments

Name

Type

Description

text

STRING

The string in which to decapitalize the first letter.

Returns

STRING

Usage Examples

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

"graph Database"