#include <stdio.h>
#include "string.h"
#include "stdlib.h"
///自己封装的拷贝字符串的方法
int ericCopy(char *to,char *from,long num){
int ret = 0;
if (from == NULL||to==NULL||num ==0) {
return -1;
}
for (int i = 0; strlen(from); i++) {
if (i<num) {
to[i] = from[i];
}else{
to[i] = '\0';
break;
}
}
return ret;
}
int spitString(char *string,char spit,char **buff,int *count){
int ret = 0;
int temCount =0;
if (string ==NULL||buff==NULL||count==NULL) {
return -1;
}
char *p = string;
char *ptmp = string;//临时指针
do {
p = strchr(ptmp, spit);
if (p == NULL) {
ret = -2;
break;
}
//strncpy(buff[temCount], p, p-ptmp);
ericCopy(buff[temCount], ptmp, p-ptmp);
buff[temCount][p-ptmp] = '\0';
// printf("%s",buff[temCount]);
temCount++;
ptmp = p = p+1;
} while (*p!='\0');
*count = temCount;
return ret;
}
void freeMemory(char **p,int num){
if (p == NULL) {
return;
}
for (int i = 0; i<num; i++) {
free(p[i]);
}
p = NULL;//把实参赋值成NULL
}
int main(int argc, const char * argv[]) {
// insert code here...
printf("Hello, World!\n");
// char **buff = {"adf","ewr","asgaggd","wtew","dsgdsag"};
char *buff = "adfadf,sdggd,sdf,erer,erer,";
int count = -1;
// char array[10][30];
char **array = NULL;//这里使用动态分配内存的方法
array = (char**)malloc(10*sizeof(char *));
for (int i = 0; i<10; i++) {
array[i] = (char *)malloc(30*sizeof(char));
}
printf("%s",array[2]);
spitString(buff, ',', array, &count);
printf("%p",array);
if (count!=0) {
for (int i = 0; i<count; i++) {
printf("\n%s",array[i]);
}
printf("\n");
}
//free(array);
freeMemory(array, count);//释放内存
return 0;
}
一个练习分割字符串,二级指针分配内存
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 今天遇到一个C语言实现判断任意大小矩阵(二维数组)是否为单位矩阵的题目,要求第一个参数为整型指针,第二个参数为矩阵...
- JavaScript split() 方法 定义和用法split() 方法用于把一个字符串分割成字符串数组。 语法...