我已经到了程序的最后一部分,我再次面临一些问题。
问题 #1:当我在标记化的 while 循环中打印数组的分隔字符串部分时,这些值是好的。但是,当我打印时puts(tokenArray[1])
,它只显示命令的一个字母,例如:输入:“qwe rty”| 循环打印输出while
:qwerty | 在循环外使用打印输出puts(tokenArray[1])
:“e”(是的,只是字母)。
问题 #2:我在调试时注意到了这一点。在我输入一个随机输入然后输入“历史”后,第tokenArray
一个位置用“历史”填充,下一个位置用“历史”填充。为此,我不能使用嵌套循环和 strcmp,如下所示,以检查第一部分是否为“历史”,如果是,请检查第二部分。如果第二部分为空,只显示命令的历史,或者如果它是“1”/“2”等(当用户输入“历史1”时,执行历史中的第一个命令。
这是我到目前为止的进展:
#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] = {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;
tokenArray[j] = result;
//puts(result);
result= strtok(NULL, delims);
//puts(tokenArray[j]);
j++;
}
//j = 0;
puts(tokenArray[1]);
if (strcmp(tokenArray[0],historyKey) == 0)
{
if (strcmp(tokenArray[1], " " ) == 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;
}