Reference: toCamelCase
toCamelCase(str) returns the string str where every character is upper-case if and only if it is the first character of a word. Example: toCamelCase("this is a brief text. a very brief text, actually.") = "This Is A Brief Text. A Very Brief Text, Actually."