gpt4 book ai didi

c - 用字符串的一部分填充二维数组

转载 作者:行者123 更新时间:2023-11-30 15:51:37 26 4
gpt4 key购买 nike

我希望将我破坏的字符串部分输入到二维数组中,例如:字符串:“有一天”数组结果:Col1:一个 Col2:天

问题是,如何用第 1 列的这两个变量 result2 和第 2 列的 result 填充数组?

这是我到目前为止的代码(如您所见,我有一个单独的历史数组和一个单独的数组用于保存用户输入的部分):

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

int main (int argc, char *argv[])
{
int i=0; int j=0; int k=0;
char inputString[100];
char *result=NULL;
char *result2=NULL;
char delims[] = " ";
char historyArray[100][100] = {0};
char historyKey[] = "history";
char *tokenArray[100][100] = {0} ;
//char exitString[] = "exit";

do
{

printf("hshell>");
gets(inputString);
strcpy (historyArray[k], inputString);
k++;


// Break the string into parts
result = strtok(inputString, delims);

while (result!=NULL)
{
result2 = result;
puts(result);
result= strtok(NULL, delims);
for (int count = 0; count < k; count++)
tokenArray[count] = result2;
j++;
}



if (strcmp(inputString,historyKey) == 0)
{
for (i=0; i<k; i++)
{
printf("%d. %s \n",i+1,historyArray[i]);
}
}
else if (strcmp ("exit",inputString) != 0)
{
printf("\nCommand not found \n");
}

}while (strcmp ("exit", inputString) != 0);
return 0;
}

最佳答案

首先,听起来您需要一个一维数组作为输入:

  char tokenArray[100];

然后再往下,循环将执行以下操作:

result = strtok(inputString, delims);

j = 0;
while (result!=NULL)
{
strcpy(tokenArray[j++], result);
puts(result);
result= strtok(NULL, delims);
}

尝试使用该提示并查看其余内容。

关于c - 用字符串的一部分填充二维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14965436/

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