已知s1和s2字符串,由Inputbox函数输入,请统计s2字符串在s1里出现的次数.
1个回答
展开全部
/*************************字符串查找函数str_counts***************************/
//p串中出现f串的次数
//return:子串出现的次数
int str_counts(char* p,char* f){
string t(p);
int i=0;
int flen = strlen(f);
int counts=0;
while(1){
i = t.find(f,i);
//cout<<i<<" ";
if(-1==i)
break;
i += flen;
counts++;
}
return counts;
}
//p串中出现f串的次数
//return:子串出现的次数
int str_counts(char* p,char* f){
string t(p);
int i=0;
int flen = strlen(f);
int counts=0;
while(1){
i = t.find(f,i);
//cout<<i<<" ";
if(-1==i)
break;
i += flen;
counts++;
}
return counts;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询