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

小知识点~

时间:2019-04-10 21:38:10      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:class   转化   div   col   out   pre   转换   大写   tran   

 

1.转换为小写字母
str="qwer";
transform(str.begin(),str.end(),str.begin(),::tolower);
cout<<"转化为小写后为:"<<str<<endl;
transform(str.begin(),str.end(),str.begin(),::toupper);
cout<<"转化为大写后为:"<<str<<endl;

 

小知识点~

标签:class   转化   div   col   out   pre   转换   大写   tran   

原文地址:https://www.cnblogs.com/zhying99/p/10686241.html

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