std::string 去除先後空格

void trimString(std::string & str ) { int s = str.find_first_not_of(" "); int e = str.find_last_not_of(" "); str = str.substr(s,e-s+1); return; }
相關文章
相關標籤/搜索