码迷,mamicode.com
首页 > 编程语言 > 详细

c++ string去除首尾 空格、\n、\r、\t

时间:2018-09-04 20:47:52      阅读:701      评论:0      收藏:0      [点我收藏+]

标签:ast   style   fir   col   空格   color   ras   c++   class   

 

    string s = "    test ";
    size_t n = s.find_last_not_of(" \r\n\t");
    if (n != string::npos){
        s.erase(n + 1, s.size() - n);
    }
    n = s.find_first_not_of(" \r\n\t");
    if (n != string::npos){
        s.erase(0, n);
    }

 

c++ string去除首尾 空格、\n、\r、\t

标签:ast   style   fir   col   空格   color   ras   c++   class   

原文地址:https://www.cnblogs.com/haiyang21/p/9588238.html

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