toLowerCase


Description:

public static string toLowerCase (string? s)

Convert the string to lower case.

Example:

    assert (Strings.toLowerCase ("HELLO") == "hello");

Parameters:

s

the string to convert.

Returns:

lower-cased string, or empty string if null.