#include <string>
#include <algorithm> void test()
{
std::string strA="QQQQWWWqqqqqqwwwwwww; //std::string的大小写转换
transform(strA.begin(), strA.end(), strA.begin(), ::toupper);
transform(strA.begin(), strA.end(), strA.begin(), ::tolower);
}
相关文章
- 03-17std::string转化大小写(C++)
- 03-17CString 与 std::string 相互转化
- 03-17std::string 字符串大小写转换(转)
- 03-17C++ string的大小写转换
- 03-17有关C++ std::string 类的类型转换 其他语言永远无法理解的伤
- 03-17MFC中CString 与 std::string 相互转化
- 03-17(转)C++——std::string类的引用计数
- 03-17如何将std::string转int,double? (C/C++) (C) (template)
- 03-17C++ int与string的转化
- 03-17托管c++ (CLI) String^ 到 std::string 的相互转化