Convert the string to camelCase.
Twine\Str::camelCase( void ) : Twine\Str
$string = new Twine\Str('john pinkerton');
$string->camelCase(); // Returns 'johnPinkerton'
Twine\Str::pascalCase()
|
= |
Twine\Str::camelCase()
|