码迷,mamicode.com
首页 > 其他好文 > 详细

C库函数将字符串转大小写

时间:2021-03-30 13:05:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:字符   form   tran   write   for   ring   大写   std   函数   

头文件

#include <algorithm>

transform 函数

转大写

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

C库函数将字符串转大小写

标签:字符   form   tran   write   for   ring   大写   std   函数   

原文地址:https://www.cnblogs.com/pandamohist/p/14589313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!