要删除一个指定的字符串,可以使用find()
函数找到字符串在原始字符串中的位置,然后使用substr()
函数删除该字符串。以下是一个示例代码:
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "Hello World";
string toDelete = "World";
size_t pos = str.find(toDelete);
if (pos != string::npos) {
str.erase(pos, toDelete.length());
}
cout << str << endl;
return 0;
}
上面的代码中,我们定义了一个原始字符串str
和一个要删除的字符串toDelete
。然后使用find()
函数找到toDelete
在str
中的位置,并使用erase()
函数删除该字符串。最后打印出删除指定字符串后的结果。