apoc.text.upperCamelCase
语法 |
|
||
描述 |
将给定的 |
||
参数 |
名称 |
类型 |
描述 |
|
|
要转换为驼峰命名法的字符串。 |
|
返回 |
|
||
使用示例
RETURN apoc.text.camelCase("FOO_BAR") AS output;
| 输出 |
|---|
"FooBar" |
RETURN apoc.text.upperCamelCase("Foo bar") AS output;
| 输出 |
|---|
"FooBar" |
RETURN apoc.text.upperCamelCase("Foo22 bar") AS output;
| 输出 |
|---|
"Foo22Bar" |
RETURN apoc.text.upperCamelCase("foo-bar") AS output;
| 输出 |
|---|
"FooBar" |
RETURN apoc.text.upperCamelCase("Foobar") AS output;
| 输出 |
|---|
"Foobar" |
RETURN apoc.text.upperCamelCase("Foo$$Bar") AS output;
| 输出 |
|---|
"FooBar" |