Convert the string to camelCase. Splits on whitespace, hyphens, and underscores.
Example:
assert (Strings.toCamelCase ("hello_world") == "helloWorld");
assert (Strings.toCamelCase ("Hello World") == "helloWorld");
| s |
the string. |
|
camelCase string. |