C++ STL string 的 "trim"

#include <algorithm> #include <string> int main() { std::string str("a + b / c"); str.erase(remove_if(str.begin(), str.end(), isspace), str.end()); }

 

输出结果:

 

a+b/c

你可能感兴趣的:(C++ STL string 的 "trim")