string RemoveChar(string str, char c)
{
string result;
for (size_t i = 0; i < str.size(); i++)
{
char currentChar = str[i];
if (currentChar != c)
result += currentChar;
}
return result;
}
我就是这么做的。
或者你可以像安托万说的那样:
参见 < a href = “ https://stackoverflow. com/questions/5891610/how-to-remove-words-from-a-string”> this
有个问题
这也回答了同样的问题。就你的情况而言: