标签:字符 form tran write for ring 大写 std 函数
#include <algorithm>
std::string str_write;
// 全部转为大写
std::transform(str_write.begin(), str_write.end(), str_write.begin(), toupper);
std::string str_write;
// 全部转为小写
std::transform(str_write.begin(), str_write.end(), str_write.begin(), tolower);
标签:字符 form tran write for ring 大写 std 函数
原文地址:https://www.cnblogs.com/pandamohist/p/14589313.html