C++的STL一行去除前导/后导空格

bool isNumber(string s, int& index){

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

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

}

你可能感兴趣的:(c++,开发语言)