字符串的查找删除(九度教程第104题)

题目描述:
给定一个短字符串(不含空格),再给定若干字符串,在这些字符串中删除
所含有的短字符串。
输入:
输入只有 1 组数据。
输入一个短字符串(不含空格),再输入若干字符串直到文件结束为止。
输出:
删除输入的短字符串(不区分大小写)并去掉空格,输出。

样例输入:

in
#include
int main()
{

printf(" Hi "); 
}

样例输出:

#clude
tma()
{

prtf("Hi");
}

提示:
注:将字符串中的 In、IN、iN、in 删除。

代码

#include
#include
//#include
using namespace std;

int main() {
	string s1;
	//方案一  使用cin输入 需要额外吃掉回车
	cin >> s1;
	//全部改写为小写
	for (int i = 0; i < s1.size(); i++) {
		s1[i] = tolower(s1[i]);
	}
	getchar();//吃掉回车  
	
	//方案二 使用getline输入
	/*getline(cin, s1);
	for (int i = 0; i < s1.size(); i++) {
	s1[i] = tolower(s1[i]);
	}*/

	string a, b;
	//cin >> a;
	while(getline(cin, a)) {
		b = a;
		for (int i = 0; i < b.size(); i++) {
			b[i] = tolower(b[i]);
		}
		int t = b.find(s1, 0);
		while (t != string::npos) {
			a.erase(t, s1.size());
			b.erase(t, s1.size());
			t = b.find(s1, 0);
		}
		t = b.find(" ", 0);
		while (t != string::npos) {
			a.erase(t, 1);
			b.erase(t, 1);
			t = b.find(" ", 0);
		}
		cout << a << endl;
	}
	//system("pause");
	return 0;
}

你可能感兴趣的:(字符串操作,机试指南之路)