transform(str.begin(), str.end(), str.begin(), ::tolower);//将str字符串中的大写转换为小写,保存在str中
transform(str.begin(), str.end(), str.begin(), ::toupper);//小写->大写
transform(str.begin(), str.end(), str.begin(), exchange);//大小写切换
string s = "sadFASsf"
for (auto &c : s) c = toupper(c); // 转化为大写
for (auto &c : s) c = tolower(c); // 转化为小写