编辑:使用普通c

这部分地是指我的最后一个问题,但是我现在完全重写了大约3次代码,而现在却陷入困境。我已经读过很多关于2D数组的东西,我感到困惑,因为我应该认为是正确的,其他stackoverflow帖子使我更加困惑:(

例如:

char array[A][B];


一些消息来源说A是nr。字段的长度,B表示一个字段的长度,而其他字段则表示A是nr。行,B为nr。矩阵的列数。其他人则说这只会保存单个字符。

继续我的问题:

我正在编写测验,并且有一个数据库文件,其中每一行都像这样:

Multiple Words A#Multiple Words B#Multiple Words C


现在,我想读取文件并将该行拆分为多个变量,它们的定义如下:

char frageinhalt[50][255]; // the question itself (later smth like "capital of germany?"
char antw1[50][255]; // the first answer to the question
char antw2[50][255]; // second answ


行应按如下方式拆分:

Multiple Words A => frageinhalt
Multiple Words B => antw1
Multiple Words C => antw2


每行应在数组中获得分配的字段,因此我可以简单地在其他函数中打印它们。

例如:
我想打印第一个问题及其答案

printf("%s,%s,%s",frageinhalt[0],antw1[0],antw2[0]);


但这在我的代码中不起作用。任何想法?

完整代码如下。

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

int readfromfile(); // func prototype

char data[100]; // a row from the file

char temp[50];

//Fragebezogen
char id[50][5]; // question nr
char frageinhalt[50][255]; // the question itself (later smth like "capital of germany?"
char antw1[50][255]; // the first answer to the question
char antw2[50][255]; // second answ


int main() {
  readfromfile();
  printf("\nFrageinhalt: %s Antw1: %s Antw2: %s\n", frageinhalt[1], antw1[1], antw2[1]); // Doesn't work properly
  return 0;
}
int readfromfile() {
  FILE *datei_ptr;
  int i = 0;
  char ch;
  int lines = 0;
  int k = 0;
  char delimiter[] = ",;#";
  char *ptr;


  datei_ptr = fopen("test.txt", "r");

  if (datei_ptr == NULL) {
    printf("nothing left in file");



 }
  else {

while (!feof(datei_ptr))
{
  ch = fgetc(datei_ptr);
  if (ch == '\n') // Wenn der gerade gelesene Character ein Zeilenumbruch ist..
  {
    lines++; // Erhöhe die Anzahl der Zeilen um 1
  }
}

fclose(datei_ptr);
datei_ptr = fopen("test.txt", "r");
do {
  fgets (data, 255, datei_ptr);
  puts(data);


  ptr = strtok(data, delimiter);
  printf("###############################\n");
  while (ptr != NULL)
  {

    printf("Abschnitt gefunden: %s\n", ptr);

    // naechsten Abschnitt erstellen
    ptr = strtok(NULL, delimiter);
  }
  printf("###############################\n");
  k++;
} while (k != lines + 1);

fclose(datei_ptr);
  }

}

最佳答案

以下建议的代码:


干净地编译
执行OP隐含功能
用有意义的名称替换(大多数)“魔术”数字
消除未使用/不需要的局部变量和不需要的逻辑
格式化代码以便于阅读和理解
正确将错误消息(以及操作系统认为发生错误的原因)输出到stderr
为没有参数的子函数正确声明原型


现在,建议的代码为:

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

#define MAX_ROW_LEN      1024
#define MAX_LINES        50
#define MAX_QUESTION_LEN 255
#define MAX_ANSWER_LEN   255

void readfromfile( void ); // func prototype

char data[ MAX_ROW_LEN ]; // a row from the file


//Fragebezogen
char id[ MAX_LINES ][5]; // question nr
char frageinhalt[ MAX_LINES ][ MAX_QUESTION_LEN ]; // the question itself (later smth like "capital of germany?"
char antw1[ MAX_LINES ][ MAX_ANSWER_LEN ]; // the first answer to the question
char antw2[ MAX_LINES ][ MAX_ANSWER_LEN ]; // second answ


int main( void )
{
    readfromfile();
    printf("\nFrageinhalt: %s Antw1: %s Antw2: %s\n",
            frageinhalt[1],
            antw1[1],
            antw2[1]);
    return 0;
}


void readfromfile()
{
    FILE *datei_ptr;
    char delimiter[] = ",;#";
    char *token;

    datei_ptr = fopen("test.txt", "r");

    if ( !datei_ptr )
    {
        perror( "fopen failed" );
        exit( EXIT_FAILURE );
    }

    int lineCounter = 0;
    while( lineCounter < MAX_LINES && fgets (data, sizeof( data ), datei_ptr) )
    {
        puts(data);
        printf("###############################\n");

        token = strtok(data, delimiter);

        if ( token )
        {
            printf("Abschnitt gefunden: %s\n", token);
            strncpy( id[ lineCounter ], token, 5 );

            token = strtok(NULL, delimiter);
            if( token )
            {
                strncpy( frageinhalt[ lineCounter ], token, MAX_QUESTION_LEN );

                token = strtok( NULL, delimiter );
                if( token )
                {
                    strncpy( antw1[ lineCounter ], token, MAX_ANSWER_LEN );

                    token = strtok( NULL, delimiter );
                    if( token )
                    {
                        strncpy( antw2[ lineCounter ], token, MAX_ANSWER_LEN );
                    }
                }
            }
        }

        printf("###############################\n");
        lineCounter++;
    }

    fclose(datei_ptr);
}

关于c - 卡在2D数组上,将指针插入文件中的字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50775278/

10-11 22:24
查看更多