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

c/c++常用代码--string trim

时间:2014-09-28 14:27:52      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   c   代码   amp   r   line   ef   c++   

 

typedef std::basic_string<TCHAR> tstring;

 

inline static void trim(tstring& s)
{
    s.erase(0, s.find_first_not_of(_T("\r\t\n ")));
    s.erase(s.find_last_not_of(_T("\r\t\n "))+1);
}

c/c++常用代码--string trim

标签:ar   sp   c   代码   amp   r   line   ef   c++   

原文地址:http://www.cnblogs.com/chengning/p/3998087.html

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