- 论坛徽章:
- 0
|
本帖最后由 thankcs 于 2012-06-11 22:02 编辑
给你一个我写的吧,虽然代码写得很烂。但能用!
/*
功能: 分割联系人定义列表
日期: 2012/06/07
输入:
source: 自定义宏值
keystr: 分割符
输出:
connectlist: 自定义联系人列表
*/
static int GetStrList(char *source, char *keystr, char connectlist[_MAX_CONNECT_][_MAX_CONNECT_LEN_])
{
char source_temp[512 +1];
char exchage_temp[512 +1];
char exchage_temp2[512 +1];
int iCount =0;
int offset = strlen(keystr);
char *point = NULL;
TLogL(LEVEL3,__FILE__, __LINE__, "%s>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>", __FUNCTION__);
memset(source_temp, 0, sizeof(source_temp));
strcpy(source_temp, source);
while( (point = strstr(source_temp, keystr) ))
{
memset(exchage_temp, 0, sizeof(exchage_temp));
strcpy(exchage_temp, source_temp);
memset(exchage_temp2, 0, sizeof(exchage_temp2));
strcpy(exchage_temp2,point+offset );
memset(source_temp, 0, sizeof(source_temp));
strcpy(source_temp, exchage_temp2);
memcpy(connectlist[iCount], exchage_temp, strlen(exchage_temp)-strlen(source_temp)-offset);
iCount++;
}
if ( strlen(source_temp) )
strcpy(connectlist[iCount], source_temp);
TLogL(LEVEL3,__FILE__, __LINE__, "%s<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<", __FUNCTION__);
return SUCCESS;
} |
|