apoc.text.upperCamelCase
Function APOC Core
apoc.text.upperCamelCase(text) YIELD value - Convert a string to camelCase
Usage Examples
RETURN apoc.text.camelCase("FOO_BAR") AS output;| output | 
|---|
| "FooBar" | 
RETURN apoc.text.upperCamelCase("Foo bar") AS output;| output | 
|---|
| "FooBar" | 
RETURN apoc.text.upperCamelCase("Foo22 bar") AS output;| output | 
|---|
| "Foo22Bar" | 
RETURN apoc.text.upperCamelCase("foo-bar") AS output;| output | 
|---|
| "FooBar" | 
RETURN apoc.text.upperCamelCase("Foobar") AS output;| output | 
|---|
| "Foobar" | 
RETURN apoc.text.upperCamelCase("Foo$$Bar") AS output;| output | 
|---|
| "FooBar" |