transform string to lowercase c++ code example
Example 1: convert characters to lowercase c++
str[i] = tolower(str[i]);
Example 2: c++ convert lowercase to uppercase
/* toupper example */
int main ()
{
int i=0;
char str[]="Test String.\n";
char c;
while (str[i])
{
c=str[i];
putchar (toupper(c));
i++;
}
return 0;
}
Example 3: tolower funciton in cpp
transform(s.begin(), s.end(), s.begin(), ::tolower);
Example 4: tolower in c++
using namespace std;
int main()
{
char str[] = "John is from USA.";
cout << "The lowercase version of \"" << str << "\" is " << endl;
for (int i=0; i<strlen(str); i++)
putchar(tolower(str[i]));
return 0;
}
Example 5: convert whole string to lowercase c++
using namespace std;
main() {
string s = "Viet Nam";
transform(s.begin(), s.end(), s.begin(), ::tolower); //lowercase
cout << s << endl;
}
Example 6: c++ string functions lowercase
transform(su.begin(), su.end(), su.begin(), ::toupper);
transform(sl.begin(), sl.end(), sl.begin(), ::tolower);