要刪除一個指定的字符串,可以使用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()
函數刪除該字符串。最后打印出刪除指定字符串后的結果。