I want to replace all of the Uppercase letters in string with lowercase letters is there any function to do so because the replace function is not giving any result. Here is my code..
for (int i = 0 ; i < string. size() ; i++ )
{
if (string[i] >= 65 && string[i] <= 90)
{
string.replace(string[i] , 1 ,string[i]+32);
}
}