1.利用find函数查找目标字符串并返回目标位置,然后目标位置加一,查找下一个
2.在输入的字符串前加空格,便于查找,因为单词不是连续的
3.利用字符串的循环和tolower和toupper函数转换字母的大小写
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
string t;
getline(cin, s);
getline(cin, t);
for (char& ch : s) {
ch = tolower(ch);
}
for (char& ch : t) {
ch = tolower(ch);
}
//单词不是连续的有空格,所以在输入的字符中加入空格,便于判断
s = ' ' + s + ' ';
t = ' ' + t + ' ';
if (t.find(s) == string::npos) {
cout << -1 << endl;
return 0;
}
int ans = 0; int loc= t.find(s);
int num = loc;
while (loc < t.size()) {
if (t.find(s) != string::npos) {
loc = t.find(s,loc+1);
ans++;
}
}
cout << ans << ' ' << num;
return 0;
}