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); }
浙公网安备 33010602011771号