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;
}
string常用的查找函数:find(),find_first_of(),find_first_not_of(),find_last_of(),find_last_not_of()~~~
去掉C++首尾的空格
最新推荐文章于 2022-04-20 20:44:01 发布