求非空格字符串的长度,并打印字符串

int getCount(char *str,int *pCount)
{
	char *p=str;
	int i=0;
	int j=0;
	int ncount=0;
	j=strlen(p)-1;
	if(str == NULL|| pCount ==NULL)
	{
		return -1;
	}
	while(isspace(p[i])&&p[i]!='\0')
	{
		i++;
	}
	while(isspace(p[j])&&p[j]!='\0')
	{
		j--;
	}
	 ncount=j-i+1;
	 *pCount=ncount;
	 return 0;
}
int trimSpace(char *str,char *newstr)
{
	char *p=str;
	int i=0;
	int j=0;
	int ncount=0;
	j=strlen(p)-1;
	if(str == NULL|| newstr ==NULL)
	{
		printf("func trimSpace() \n");
		return -1;
	}
	while(isspace(p[i])&&p[i]!='\0')
	{
		i++;
	}
	while(isspace(p[j])&&p[j]!='\0')
	{
		j--;
	}
	ncount=j-i+1;
	strncpy(newstr,str+i,ncount);
	newstr[ncount]='\0';
	return 0;

}

int main()
{
	char *p="   1234   ";
	int num=0;
	char a[100]="";
	getCount(p,&num);
	printf("num=%d \n",num);
	trimSpace(p,a);
	printf("a[100]=%s",a);
	system("pause");
	return;
}

引用#include <ctype.h>头文件可使用isspace()函数

本代码段中引用strncyp()函数

if语句防止down机

getCount()函数求非空字符串长度

trimSpace()函数去掉字符串两端的空格

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值