使用 C++ 中 STL 将整个字符串转换为大写或小写
在本教程中,我们将讨论一个使用 C++ 中 STL 将整个字符串转换为大写或小写的程序。
为了执行此转换,C++ STL 提供了 toupper() 和 tolower() 函数,分别转换为大写和小写。
示例
#include<bits/stdc++.h> using namespace std; int main(){ string su = "Tutorials point"; transform(su.begin(), su.end(), su.begin(), ::toupper); cout << su << endl; string sl = "Tutorials Point"; transform(sl.begin(), sl.end(), sl.begin(), ::tolower); cout << sl << endl; return 0; }
输出
TUTORIALS POINT tutorials point
广告