string_Trim

std::string& trim(std::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;
}

  

posted @ 2023-03-16 15:14  leochan007  阅读(5)  评论(0编辑  收藏  举报