码迷,mamicode.com
首页 > 其他好文 > 详细

字符拆分

时间:2014-09-18 18:26:54      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:des   blog   io   os   ar   for   div   sp   log   

#include <iostream>

void split(char *psrc, const char separator, char **dest, int& num,bool bHoldSeparator=false)
{
	num=0;
	int index=0;

	int i;
	for(i=0;i<strlen(psrc);i++){
		if(psrc[i]==separator)
		{
			num++;
			index=0;
			if(!bHoldSeparator) continue;
		}
		dest[num][index++]=psrc[i];
	}
}

#define SEPERATE_LENGTH 128
int main()
{
	char src[] = "Accsvr:tcp  -h    127.0.0.1    -p    20018";
	char* dest[SEPERATE_LENGTH];

	int i;
	for(i=0;i<SEPERATE_LENGTH;i++){
		dest[i]=(char*)malloc(SEPERATE_LENGTH*sizeof(char));
		memset( dest[i],0,SEPERATE_LENGTH*sizeof(char) );
	}

	int num = 0;
	
	split(src,‘-‘,dest,num);

	for(i=0;i<SEPERATE_LENGTH;i++){
		if( strlen(dest[i])>0 )
			std::cout<<i<<" ---> "<<dest[i]<<std::endl;
		delete [] dest[i];
	}

	std::cout<<"Over"<<std::endl;
	getchar();
	return 0;
}

  

字符拆分

标签:des   blog   io   os   ar   for   div   sp   log   

原文地址:http://www.cnblogs.com/tiancun/p/3979584.html

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