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

去首尾空格

时间:2018-07-29 16:38:31      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:span   trim   code   bsp   first   nbsp   return   ast   last   

string & trim(string &s){
    if(s.empty()){
        return s;
    }
    s.erase(0,s.find_first_not_of(" "));
    s.erase(s.find_last_not_of(" ")+1);
    return s;
}

 

去首尾空格

标签:span   trim   code   bsp   first   nbsp   return   ast   last   

原文地址:https://www.cnblogs.com/yuguangyuan/p/9385376.html

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