码迷,mamicode.com
首页 > 编程语言 > 详细

[C/C++]除去字符串中的多余空格

时间:2014-12-15 11:57:32      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   for   on   div   log   as   tt   

#include <stdio.h>
#include <string.h>
void deblank(char string[])
{
	const int tmp=strlen(string);
	for (int i = 0; i <=tmp; ++i)
	{
		if (string[i]==‘ ‘)
		{
			if (string[i+1]==‘ ‘)
			{
				for (int j = i+1;j<=tmp;j++)
					string[j]=string[j+1];
				i--;
				continue;
			}
		}
		else
			continue;
	}
}
int main(void)
{
	char chars[1000];
	gets(chars);
	deblank(chars);
	for (int i = 0; i < strlen(chars); ++i)
	{
		printf("%c",chars[i]);
	}
	return 0;
}

  

[C/C++]除去字符串中的多余空格

标签:blog   io   ar   for   on   div   log   as   tt   

原文地址:http://www.cnblogs.com/visionsmile/p/4164433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!