gpt4 book ai didi

c - 如何从包含整数和字符串的文本文件中使用 fscanf 和 fgets?

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

示例文件:

School Name (with spaces)
FirstNameofStudent StudentID
School Name2 (with spaces)
FirstNameofStudent2 StudentID2
School Name3 (with spaces)
FirstNameofStudent3 StudentID3

我似乎不知道在第一行使用 fgets 后该怎么做。

如果单独使用,我可以使用fgets轻松获取学校名称第二行本身使用 fscanf,然后使用 atoistudentID 转换为 int。

但是如何结合使用 fgetsfscanf 呢?

扫描到的信息将被放入一个数组中。

最佳答案

在讨论解决方案之前,我想指出数组只能有单一类型。您不能将整数存储在字符数组中。

这意味着,如果您希望将所有这些信息放入单个二维数组中,则需要将 ID 存储为字符串。然后,如果您需要它作为整数,则需要使用 atoi一旦你取回它就可以了。

现在为了将两者结合起来,您需要一个带有 fgets 的 while 循环在条件中以便检索第一行。像这样的事情:

while(fgets(schoolname, 255, fp) != 0){ ... }

这将继续检索行,直到失败或到达 EOF。但是,您想使用 fscanf对于第二行,为此,您需要这样的行:

fscanf(fp, "%s %s\n", name, id);

这意味着,从当前点开始,有两个由空格和换行符分隔的字符串。将两个字符串存储在 name 中和id ,并吞掉换行符。

吞噬换行符是关键,就好像你下次不这样做一样 fgets运行时,它只会在该行上找到一个换行符。

对于将元素存储在数组中,您需要一个二维字符串数组。为此,您可以固定或动态进行。对于固定的,这很简单,只需像 char students[3][3][80] 这样的行即可并简单地存储东西在那里,但对于动态,您需要使用内存分配,指针等,以及变量喜欢 char ***students

这是我用来解决您的问题的代码,但我建议您也尝试自己执行此操作,以掌握窍门:

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

int main(){
FILE *fp = fopen("ex.txt", "r");

if(fp == 0) exit(-1);

char ***students;

// Used to check how many students there are
int studentno = 0;

// Init students array
// So far it means 1 ROW, with 3 COLUMNS, each of 80 CHARACTERS
students = calloc(studentno+1, 3 * 80);

// Temporary variables for storage
char schoolname[80];
char name[20];
char id[10];

int i = 0;

while(fgets(schoolname, 255, fp) != 0){
studentno++;

// Retrieve name and id from second line
fscanf(fp, "%s %s\n", name, id);

// Cut off newline left from fgets
schoolname[strlen(schoolname)-2] = 0;

// Allocate memory for new members of array
students[i] = malloc(3 * 80);
students[i][0] = malloc(80);
students[i][1] = malloc(80);
students[i][2] = malloc(80);

// Copy strings received into array
strcpy(students[i][0], schoolname);
strcpy(students[i][1], name);
strcpy(students[i][2], id);

// Resize students array for additional students
students = realloc(students, (size_t) (studentno+1) * 3*80);

i++;
}

// Check students are stored correctly
for(int i = 0; i < studentno-1; i++){
printf("%s - %s - %s\n", students[i][0], students[i][1], students[i][2]);
}
}

关于c - 如何从包含整数和字符串的文本文件中使用 fscanf 和 fgets?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50288048/

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