删除字符串中的子串
输入2个字符串S1和S2,要求删除字符串S1中出现的所有子串S2,即结果字符串中不能包含S2。输入在2行中分别给出不超过80个字符长度的、以回车结束的2个非空字符串,对应S1和S2。在一行中输出删除字符串S1中出现的所有子串S2后的结果字符串。
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <string>
using namespace std;
int main(){
int n,len;
string str1,str2;
getline(cin,str1);
getline(cin,str2);
len=str2.size();
while(n!= string::npos)
{
n = str1.find(str2);
if(n!= string::npos)
{
str1.erase(str1.begin()+n,str1.begin()+n+len);
}
}
cout<<str1;
return 0;
}