gpt4 book ai didi

c - 如何从 C 文件中的双引号中读取多个单词

转载 作者:行者123 更新时间:2023-12-02 08:37:05 24 4
gpt4 key购买 nike

我正在尝试从文件中读取字符串并将其读取到结构中,但是当我到达包含两个或更多单词的字符串时,我似乎尝试的所有操作都不起作用

文件中的数据

“K300”“键盘”“美国通用”150.00 50

“R576”“16 英寸轮辋”“Toyota Verossa”800.00 48

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

typedef struct partInfo {
char number[6];
char name[20];
char description[30];
double price;
int qty;
}Part;

int main() {

char num[6], name[20], desc[30];
int i=0;
int q;
double p;
char ch;


FILE * in = fopen("input.txt", "r");

Part part1;
fscanf(in, " %[^ ]s", &num);
printf("%s\n", num);

fscanf(in, " %[^ ]s", &name);
printf("%s\n", name);

fscanf(in, " %[^ ]s", &desc); //right here only copy "US and not the Generic"
printf("%s\n", desc);

strcpy(part1.number, num);
strcpy(part1.name, name);
strcpy(part1.description, desc);

fclose(in);
return 0;
}

然而当我尝试使用

 fscanf(in, " %[^\n]s", &desc); 

它复制该行的其余部分我已经坚持了两天了有人可以帮助我吗以及如果可能的话如何去掉双引号我为此尝试了一组不同的代码,但出现了更多错误:(

最佳答案

scanf 中,表达式 %[chars] 读取包含括号中字符(或字符范围)的最长字符串。作为第一个字符的脱字符会反转此操作:%[^chars] 读取不包含任何字符的最长字符串。因此,%[^ ] 读取内容到下一个空格,而 %[^\n] 读取内容到下一个新行。

在您的情况下,字符串由双引号分隔,您应该阅读开始引号,然后填充到下一个引号,最后是结束引号:

res = fscanf(in, " \"%[^\"]\"", name);

此格式以空格开头,因此会丢弃第一个引号前的空格。格式字符串看起来很难看,因为双引号本身被转义了。为了说明这一点,如果您的字符串用单引号分隔,命令将是这样的。

res = fscanf(in, " '%[^']'", name);

此方法仅在您的字符串始终包含在引号中时才有效,即使它们没有空格也是如此。

使用 fgets 读取整行,然后从该行读取 sscanf 以捕获不匹配的引号可能更清晰。这样,您还可以多次扫描该行 - 一次扫描带引号的字符串,第二次扫描不带引号的字符串 - 无需多次访问磁盘。

编辑:更正了格式语法,其中包含虚假的 s 并更新了第一段中字符串的括号语法的描述。

编辑 II:因为 OP 似乎对 fscanf 的工作方式感到困惑,这里有一个逐行读取文件部分的小示例:

#define MAX 10
#define MAXLINE 240

int main(int argc, char *argv[])
{
FILE *in;
int nline = 0;

Part part[MAX];
int npart = 0;
int res, i;

in = fopen(argv[1], "r"); // TODO: Error checking

for (;;) {
char buf[MAXLINE];
Part *p = &part[npart];

if (fgets(buf, MAXLINE, in) == NULL) break;
nline++;

res = sscanf(buf,
" \"%5[^\"]\" \"%19[^\"]\" \"%29[^\"]\" %lf %d",
p->number, p->name, p->description, &p->price, &p->qty);

if (res < 5) {
static const char *where[] = {
"number", "name", "description", "price", "quantity"
};

if (res < 0) res = 0;
fprintf(stderr,
"Error while reading %s in line %d.\n",
where[res], nline);
break;
}

npart++;
if (npart == MAX) break;
}
fclose(in);

// ... do domething with parts ...

return 0;
}

这里,该行是从文件中读取的。然后,扫描该行 (buf) 以获得所需的格式。当然这里必须用sscanf代替fscanf。出错时,会打印一条简单的错误消息。此消息包括行号和读取出错的字段条目,因此可以在输入文件中找到错误。

请注意 sscanf 如何包含最大字段长度以避免溢出该部分的字符串缓冲区。当引用的字符串太长时会发生扫描错误。让 sscanf 读取所有字符并只存储前 5 个字符会更好,但这不是 sscanf 的工作方式。这样的解决方案需要另一种方法,可能是自定义扫描功能。

关于c - 如何从 C 文件中的双引号中读取多个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20315048/

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