C++ STL removes leading/trailing spaces in one line

bool isNumber(string s, int& index){

        s.erase(0,s.find_first_not_of(" "));

        s.erase(s.find_last_not_of(" ") +1);

}

Guess you like

Origin blog.csdn.net/weixin_64043217/article/details/132598598