apoc.text.decapitalizeAll

Function

apoc.text.decapitalizeAll(text String) - turns the first letter of every word in the given string to lower case.

Signature

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

Input parameters

Name Type Default

text

STRING?

null

Usage Examples

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

"graph databases"