输入2个字符串S1和S2,要求删除字符串S1中出现的所有子串S2,即结果字符串中不能包含S2。
输入格式:输入在2行中分别给出不超过80个字符长度的、以回车结束的2个非空字符串,对应S1和S2。
输出格式:在一行中输出删除字符串S1中出现的所有子串S2后的结果字符串。
#include <stdio.h>
#include <string.h>
int main(void)
{
char s[100] ;
char del[100];
char temp[100];
gets(s);
gets(del);
while( strstr(s, del) != NULL)
{
int len_s = strlen(s);
int len_del = strlen(del);
strcpy(temp, strstr(s, del));
int loc = strlen(temp);
strcpy(s + len_s - loc, temp + len_del);
}
puts(s);
return 0;
}