std::string转化大小写(C++)

#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);
}

 

posted @ 2013-12-07 10:07  Tigmer  阅读(3998)  评论(0)    收藏  举报