我正在处理一些代码,试图在其中读取以下命令,这将导致程序中的某些功能被调用:
PRINT
INSERT 0,Folders,Folders for storing related papers,25
PRINT
QUIT
我一直在尝试不同的方法来读取此输入,该输入来自./inventory test02/inventory02-actual.txt < test02/input02.txt > test02/actual02.txt
,其中上面显示的这些命令位于input-02.txt文件中。
我主要从事scanf
的工作,但是尝试过fgets
,但是我对scanf
的期望取得了最大的成功。我最初尝试过scanf("%s", command)
,在这种情况下,scanf不会使用空格,因此程序会终止。
//Keep re-prompting user for commands until you reach EOF{
while ((scanf("%[0-9a-zA-Z, ]s", command) == 1)) {
printf("====================\nCommand? ");
printf("%s\n", command);
if (strcmp(command, "PRINT") == 0) {
print(list);
} else if (strcmp(substring(command, START, INSERT_END), "INSERT") == 0) {
//Get the substring - this is the input after "INSERT"
char string[MAX_LEN_COMMAND];
strcpy(string, substring(command, OFFSET, strlen(command)));
insert(string, list);
} else if (strcmp(command, "PRINTREVERSE") == 0) {
printReverse(list);
} else {
printf("Invalid command passed.\n");
exit(EXIT_BAD_INPUT);
}
}
当前,当我运行代码时,仅读取第一个命令“ PRINT”。似乎我无法从input-02.txt读取下一行输入。有什么办法可以正确读取这些命令?另外,我的程序读入“ INSERT”后,然后将其读入“ 0,文件夹,用于存储相关文档的文件夹,25”作为命令,但不应这样做。它应该直接转到下一个命令“ PRINT”。我尝试在调用insert
方法后使用continue语句,但这没有用。有人有建议吗?
编辑:使用fgets更新代码。
我认为传递一个printf
来向我们展示该命令是什么,而不是发布上面调用的所有函数,对于可重现的示例来说可能足够简单!
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define OFFSET 7
#define START 0
#define INSERT_END 5
static const char *substring(char command[], int start, int end);
int main(int argc, char **argv)
{
//Get user input for commands
char command[500];
//Keep re-prompting user for commands until you reach EOF{
while (fgets(command, sizeof(command), stdin) != NULL) {
printf("====================\nCommand? ");
printf("%s\n", command);
if (strcmp(command, "PRINT") == 0) {
printf("%s", command);
} else if (strcmp(substring(command, START, INSERT_END), "INSERT") == 0) {
printf("%s", command);
} else if (strcmp(command, "PRINTREVERSE") == 0) {
printf("%s", command);
} else {
printf("Invalid command passed.\n");
exit(1);
}
}
}
static const char *substring(char command[], int start, int end)
{
int i = 0;
int j = 0;
char *sub;
sub = (char *)malloc(500 * sizeof(char));
for (i = start, j = 0; i <= end; i++, j++) {
sub[j] += command[i];
}
sub[j] = '\0';
return sub;
}
我得到的输出是:
====================
Command? PRINT
Invalid command passed.
答案 0 :(得分:0)
由于您正在阅读一行内容,因此fgets
将获得更好的成功。
char command[101];
while (fgets(command, 100, stdin))
{
// rest of the code can be the same
}