string Farfallino::decode(string buff) {
string stringa;
size_t pos;
while(1) {
while(pos = (buff.find("afa"))) {
buff.erase(pos, 3);
buff.insert(pos, "a");
}
while(pos = (buff.find("efe"))) {
buff.erase(pos, 3);
buff.insert(pos, "e");
}
while(pos = (buff.find("ifi"))) {
buff.erase(pos, 3);
buff.insert(pos, "i");
}
while(pos = (buff.find("ofo"))) {
buff.erase(pos, 3);
buff.insert(pos, "o");
}
while(pos = (buff.find("ufu"))) {
buff.erase(pos, 3);
buff.insert(pos, "u");
}
}
return stringa;
}
我正在尝试删除传递给函数的字符串中的每个“afa”“efe”“ifi”“ofo”和“ufu”,但它给了我这个错误。 我不知道我做错了什么..
答案 0 :(得分:5)
它应该是这样的:
while ((pos = buff.find("x")) != std::string::npos)
{
// ...
}
“未找到”通过返回npos
来发出信号,而不是零。零只是第一个角色。