1

我调试了一个函数,它正在工作。所以,是的,自学 C 似乎进展顺利。但我想让它变得更好。也就是说,它读取这样的文件:

want 
to 
program
better

并将每一行单独的字符串放入一个字符串数组中。然而,当我把东西打印出来时,事情变得很奇怪。据我所知, strcpy() 应该只复制一个字符串,直到 \0 字符。如果这是真的,为什么下面要打印字符串 want 和 \n?就像 strcpy() 也复制了 \n 并且它挂在那里。我想摆脱它。

我复制文件的代码如下。我没有包括整个程序,因为我认为这与正在发生的事情无关。我知道问题出在这里。

void readFile(char *array[5049]) 
{
    char line[256]; //This is to to grab each string in the file and put it in a line. 
    int z = 0; //Indice for the array

    FILE *file;
    file = fopen("words.txt","r");

    //Check to make sure file can open 
    if(file == NULL)
    {
        printf("Error: File does not open.");
        exit(1);
    }
    //Otherwise, read file into array  
    else
    {
        while(!feof(file))//The file will loop until end of file
        {
           if((fgets(line,256,file))!= NULL)//If the line isn't empty
           {
             array[z] = malloc(strlen(line) + 1);
             strcpy(array[z],line);
             z++;
           }    
        }
    }
    fclose(file);
}

所以现在,当我执行以下操作时:

     int randomNum = rand() % 5049 + 1;

     char *ranWord = words[randomNum];
     int size = strlen(ranWord) - 1; 
     printf("%s",ranWord);
     printf("%d\n",size);
     int i; 
     for(i = 0; i < size; i++)
     {
          printf("%c\n", ranWord[i]);
     }

它打印出来:

these 
6
t
h
e
s
e

它不应该打印出以下内容吗?

 these6
 t
 h
 e
 s
 e

所以我唯一能想到的是,当我将字符串放入数组时,它也将 \n 放入其中。我怎样才能摆脱它?

一如既往,怀着敬意。极客欧米茄

4

2 回答 2

8

fgets也读入\n,它是您输入文件的一部分。如果您想摆脱它,请执行以下操作:

int len = strlen(line);
if (len > 0 && line[len-1] == '\n') line[len-1] = '\0';
于 2012-07-31T15:45:27.250 回答
1

例如,当您阅读第一行时,您实际阅读的是“want\n”,因为换行符是该行的一部分。所以你得到“想要\n\0”。其他行也是如此(最后一行除外,除非您的文件最后有一个空行)。

于 2012-07-31T15:55:59.640 回答