toCamelCase


Description:

public static string toCamelCase (string? s)

Convert the string to camelCase. Splits on whitespace, hyphens, and underscores.

Example:

    assert (Strings.toCamelCase ("hello_world") == "helloWorld");
assert (Strings.toCamelCase ("Hello World") == "helloWorld");

Parameters:

s

the string.

Returns:

camelCase string.