C++ 字符串去除两端空格trim()经常用到。这里记录一下,方便自己使用。
//C++ 去字符串两边的空格 void trim(string &s) { if (s.empty()) { return ; } s.erase(0,s.find_first_not_of(" ")); s.erase(s.find_last_not_of(" ") + 1); }