几个常见字符串处理函数的实现原理

 我来答
司马刀剑
高粉答主

2018-06-04 · 每个回答都超有意思的
知道顶级答主
回答量:4.6万
采纳率:93%
帮助的人:7537万
展开全部
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
//查找子串sub在src中出现的次数
int cishu(char *src,const char *sub)
{
int count=0;
char *pos;

pos=src;
do
{
pos=strstr(pos,sub);
if(NULL!=pos)
{
count++;
pos+=strlen(sub);
}
}while(NULL!=pos);
return count;
}
//从from中的第m个字符起复制剩下的字符到to中
void copystr(const char *from,char *to,int m)
{
int i=m-1,j=0;

do
{
to[j++]=from[i++];
}while('\0'!=from[i]);
}
//统计字符串str中大写字母、小写字母、空格、数字以及其它字符的个数
void tongji(const char *str)
{
int dx=0,xx=0,kg=0,shz=0,qt=0,i=0;

while('\0'!=str[i])
{
if(isupper(str[i]))
{
dx++;
}
else if(islower(str[i]))
{
xx++;
}
else if(isspace(str[i]))
{
kg++;
}
else if(isdigit(str[i]))
{
shz++;
}
else
{
qt++;
}
i++;
}
printf("字符串%s中,大写字母有%d个,小写字母有%d个,空格有%d个,数字有%d个,其它字符有%d个!\n",str,dx,xx,kg,shz,qt);
}
int main()
{
char *src="abcsGfS shi ss,ha123oss",*sub="ss",to[strlen(src)+1],str[1024];
printf("%d\n",cishu(src,sub));
copystr(src,to,5);
printf("%s\n",to);
printf("请输入一个字符串:");
gets(str);
tongji(str);
system("PAUSE");
return EXIT_SUCCESS;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式