BloombergLP::bdlb::String::toLower

toLower overloads

Synopses

Declared in <bdlb_string.h>

Replace all upper case characters in the specified string having the optionally specified length with their lower-case equivalent. The behavior is undefined unless 0 <= length (if specified) and string->size() <= INT_MAX (if applicable).

static
void
toLower(char* string);
» more...

Replace all upper case characters in the specified string with their lower-case equivalent.

static
void
toLower(bsl::string* string);
» more...

Replace all upper case characters in the specified string with their lower-case equivalent.

static
void
toLower(std::pmr::string* string);
» more...

Replace all upper case characters in the specified string with their lower-case equivalent.

static
void
toLower(std::string* string);
» more...

Replace all upper case characters in the specified string having the specified length with their lower-case equivalent.

static
void
toLower(
    char* string,
    int length);
» more...