c++统计一个字符串在另一个字符串中出现的次数

如题所述

第1个回答  推荐于2016-07-24
int FindsubString(const char *sourceStr,const char *substr)
{
int counter=0;
unsigned int length=strlen(substr),index;
source=sourceStr;
while(*source)
{
index=0;
while(*(substr+index) && index<length)
{
if(*(substr+index)==*(source+index))
{
index++;
}
else
break;
}
if(*(substr+index)=='\0')
{
counter++;
}
source++;
}
return counter;
}本回答被提问者和网友采纳

相关了解……

你可能感兴趣的内容

本站内容来自于网友发表,不代表本站立场,仅表示其个人看法,不对其真实性、正确性、有效性作任何的担保
相关事宜请发邮件给我们
© 非常风气网