1. 程式人生 > >去首尾空格

去首尾空格

find erase pre string color last clas ring emp

string & trim(string &s){
    if(s.empty()){
        return s;
    }
    s.erase(0,s.find_first_not_of(" "));
    s.erase(s.find_last_not_of(" ")+1);
    return s;
}

去首尾空格