如何从C中的文件中获取单独的int

时间:2015-01-25 17:34:03

标签: c file int scanf

我怎样才能在C中得到一个像" 1,2,3,...,5,6"这样的文件中的分隔符号。 (对于一个数组或一个接一个)没有得到像#34; "或","?(,,,是可能的情况) 我考虑过strtok,但它只处理字符串,而且我不知道文件的长度是多少,所以也许fgets不是解决方案.. 我试过这个:

   fp=fopen("temp.txt","r");
   if(fp==NULL)
   {
        fprintf(stderr,"%s","Error");
        exit(0);
   }
   while(fscanf(fp,"%d",&num)!=EOF)
   {
      printf("first num is %d",&num);
   }

但我认为这将是一个问题,因为文件大小未知,而且由于垃圾问题。 你觉得怎么样?

谢谢!

2 个答案:

答案 0 :(得分:5)

使用scanf()的返回值

int chk;
do {
    chk = fscanf(fp, "%d", &num);
    switch (chk) {
        default: /* EOF */;
                 break;
        case 0: fgetc(fp); /* ignore 1 character and retry */
                break;
        case 1: printf("num is %d\n", num);
                break;
    }
} while (chk >= 0);

答案 1 :(得分:2)

以下程序适用于文件<格式的,可以提取任何整数

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


int main(int argc, char *argv[])
{
    FILE* f=fopen("file","rb");
    /* open the file  */
    char *str=malloc(sizeof(char)*100);
    /* str will store every line of the  file */
    if (f!=NULL)
    {
        printf("All the numbers found in the file !\n");
        while (fgets(str,100,f)!=NULL)
        {
            int i=0,n=0;
            /* the n will contain each number of the f ile  */
            for (i=0;i<strlen(str);i++)
            {
                int test=0;
                /* test will tell us if a number was found or  not  */
                while (isdigit(str[i]) && i<strlen(str))
                {
                    test=1;
                    n=n*10+str[i]-'0';
                    i++;
                }
                if(test!=0)
                    printf("%d\n",n);
                /* print the number if it is found */
            }
        }


        fclose(f);
    }
    free(str);
    //free the space allocated once we finished
    return 0;
}

如果我们的文件是

Hell0a, How12
ARe 1You ?
I live in 245 street

它会生成

All the numbers found in the file !
0
12
1
245

希望它有所帮助!