gpt4 book ai didi

c - 如何在 C 中将逗号分隔的字符串转换为字符串数组

转载 作者:行者123 更新时间:2023-11-30 18:54:18 24 4
gpt4 key购买 nike

我希望转换一个简单的逗号分隔字符串,如下所示:

apples, pears, oranges,

转换为C 字符串数组(不是字符数组),类似于此处找到的数组:How do I create an array of strings in C?

我知道如何在 Python 和 Javascript 中执行此操作,但我该如何在 C 中创建它?

最佳答案

像下面这样使用strtok...arrayOfString将有字符串列表。

#include <string.h>
#include <stdio.h>

int main()
{
char str[80] = "apples, pears, oranges,";
char* arrayOfString[3];
const char s[2] = ", ";
char *token;
int i=0;
/* get the first token */
token = strtok(str, s);

/* walk through other tokens */
while( token != NULL )
{
arrayOfString[i] = token;
token = strtok(NULL, s);
i++;
}

for(i=0;i<3;i++)
printf("%s\n", arrayOfString[i]);

return(0);
}

关于c - 如何在 C 中将逗号分隔的字符串转换为字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30544401/

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