去除C++中string前面和后面的空白符
生活随笔
收集整理的這篇文章主要介紹了
去除C++中string前面和后面的空白符
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
用英文正式表達(dá)的話,是trim掉string leading和trailing的whitespaces。
在工作中,如果要去除string前面或者后面的空白符,只是用如下的三種方法之一就行了。
#include <algorithm>? #include <functional>? #include <cctype> #include <locale>// trim from start static inline std::string <rim(std::string &s) {s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));return s; }// trim from end static inline std::string &rtrim(std::string &s) {s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());return s; }// trim from both ends static inline std::string &trim(std::string &s) {return ltrim(rtrim(s)); } #include<algorithm> #include<cctype> #include<locale>// trim from start (inplace) static inline void ltrim(std::string &s) {static std::locate loc;s.erase(s.begin(), std::find_if(s.begin(),s.end(), [](int ch) {return !std::isspace(ch, loc);})); }// trim from end (inplace) static inline void rtrim(std::string &s) {static std::locate loc;s.erase(std::find_if(s.rbegin(), s.rend(), [](int ch) {return !std::isspace(ch, loc);}).base(), s.end()); }// trim from both ends (inplace) staticinlinevoid trim(std::string &s) {ltrim(s);rtrim(s); }?
總結(jié)
以上是生活随笔為你收集整理的去除C++中string前面和后面的空白符的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Notepad++ 查找匹配中文
- 下一篇: C++ 动态库导出函数名“乱码”及解决