Answers for "cpp remove char"

C++
1

str remove char c++

static  void StrRemoveChar(std::string& s1, char l)
{
  s1.erase(std::remove(s1.begin(), s1.end(), l), s1.end());
}
Posted by: Guest on October-16-2021

Browse Popular Code Answers by Language