单个处理
toupper;(小写变大写)(towupper)
tolower;(大写变小写)(towlower)
字符串处理
字符串处理(ms可以用)
strupr
strlor
std::string 转换大小写
很遗憾,std::string 没有提供大小写转换的功能,所以只能用STL中的transform结合toupper/tolower完成。
头文件: string, cctype,algorithm
转小写
transform(str.begin(),str.end(),str.begin(),tolower);
transform(wstr.begin(), wstr.end(), wstr.begin(), towlower);
转大写
transform(s.begin(), s.end(), s.begin(), toupper);
transform(wstr.begin(), wstr.end(), wstr.begin(), towupper);
boost库中string_algorithm 提供了大小写转换函数to_lower 和 to_upper
Example:
#include <boost/algorithm/string.hpp>
using namespace std;
using namespace boost;
wstring wstr =L"Abc";
boost::to_lower(wstr); // abc
只有不断学习才能进步!