apoc.text.decapitalizeAll

Details

Syntax

apoc.text.decapitalizeAll(text)

Description

Turns the first letter of every word in the given STRING to lower case.

Arguments

Name

Type

Description

text

STRING

The string in which to decapitalize every word.

Returns

STRING

Usage Examples

Decapitalize the first letter of all words
RETURN apoc.text.decapitalizeAll("Graph Databases")  AS output;
Results
output

"graph databases"