algorithms/camelcase
sundowndev e296a1bcc3 add previous solutions 2020-11-18 19:48:31 +01:00
..
camelcase.go add previous solutions 2020-11-18 19:48:31 +01:00
readme.md add previous solutions 2020-11-18 19:48:31 +01:00

readme.md

Write simple .camelCase method (camel_case function in PHP, CamelCase in C# or camelCase in Java) for strings. All words must have their first letter capitalized without spaces.

For instance:

"hello case".camelCase() // => HelloCase
"camel case word".camelCase() // => CamelCaseWord