apoc.text.upperCamelCase
Syntax |
|
||
Description |
Converts the given |
||
Arguments |
Name |
Type |
Description |
|
|
The string to convert to camel case. |
|
Returns |
|
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" |