猿问
将C+中的字符串转换为大写
将C+中的字符串转换为大写
如何将字符串转换为大写。我从googling中找到的例子只需要处理chars。
繁星coding
浏览 545
回答 3
3回答
喵喵时光机
#include <algorithm>#include <string>std::string str = "Hello World";std::transform(str.begin(), str.end(),str.begin(), ::toupper);
0
0
0
慕森卡
使用C+11和Touper()的简短解决方案。for (auto & c: str) c = toupper(c);
0
0
0
随时随地看视频
慕课网APP
相关分类
C++
typedef入门问题
1 回答
我要回答