2.2.3.15.23 string::MakeLower

Description

Convert this string object to a lowercase string.

Syntax

void MakeLower( )

Parameters

Return

Examples

EX1

void string_MakeLower_ex1()
{
    string str("ABCD");
    str.MakeLower();
    //str should be "abcd"
    printf("the string converted is \"%s\"\n", str);
}

Remark

See Also

string::MakeUpper

Header to Include

origin.h