gpt4 book ai didi

c - 分割字符串并存储到字符串数组中

转载 作者:行者123 更新时间:2023-11-30 17:43:46 25 4
gpt4 key购买 nike

作为旨在存储字典并根据它替换单词的程序的一部分,我编写了一个函数,该函数基本上将(使用strtok)一个字符串拆分为其单词(用空格分隔) ,并将每个单词存储到一个字符串数组中。代码如下:

void StoreArr(char * original,char ** dest)
{
int i=0;

char * token =strtok(original, " ");
dest[i]=malloc(sizeof(token));
strcpy(dest[i],token);
++i;

while(token!=NULL)
{
dest[i]=malloc(sizeof(token));
strcpy(dest[i],token);
printf("%s",token);
token =strtok(NULL, " ");
++i;
}

}

我传递了以下变量:

         char * File = "";
File=malloc(Length(Text)*(sizeof(char)));
char ** Destination[Count(' ',File)];

目标的长度是字数。一旦程序运行,它会自行终止而不显示文本使用 StoreArr(File,Destination);

调用它

编辑:

int Length(FILE * file)
{
long result;
long origPos = ftell(file);//original start position of file
fseek(file, 0, SEEK_END);//move to end of file
result = ftell(file);//return value at end
fseek(file, origPos, SEEK_SET);//rewind to beginning
return result;
}
int Count(char a,char * b)
{
int i=0;
int count=0;
while(b[i]!='\0')
{
if(b[i]==a || b[i]=='\n')
++count;
++i;
}
return count+1;
}

?我收到警告“从不兼容的指针类型传递‘StoreArr’的参数 1,2 [默认启用]”提前致谢。

附:Breaking down string and storing it in array

上一篇文章中的代码与我的相同,但我的不起作用。我怀疑这两行有问题,我不知道为什么:

 dest[i]=malloc(sizeof(token));
strcpy(dest[i],token);

最佳答案

如果没有看到更多代码,您的代码中可能会有未定义的行为

通过 Destination 的声明,您将拥有一个指向指针的指针数组,我不知道这是否是您想要的。您还需要分配所有指针。

您还必须小心,因为 strtok 会修改它标记化的字符串,因此您无法传递文字或常量字符串。

<小时/>

如果是我,我会这样做:

char **Destination = NULL;
StoreArr(Original, &Destination);

并且有这样的功能

size_t StoreArr(char *original, char ***destination)
{
if (original == NULL || destination == NULL)
return 0;

size_t size = 0;
char *token = strtok(original, " ");
while (token != NULL)
{
/* (re)allocate array */
char **temp = realloc(*destination, sizeof(char *) * (size + 1));
if (temp == NULL)
{
/* Allocation failed, free what we have so far */
if (*destination != NULL)
{
for (size_t i = 0; i < size; ++i)
free((*destination)[i]);
free(*destination);
}

return 0;
}

/* Set the destination pointer */
*destination = temp;

/* Duplicate the token */
(*destination)[size++] = strdup(token);

/* Get next token */
token = strtok(NULL, " ");
}

return size;
}

该函数现在根据需要动态分配新条目,并在出错时返回数组中的条目数或 0

关于c - 分割字符串并存储到字符串数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20174965/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com