我正在尝试读取一个字符串后跟一个数字的文本文件,然后存储它的内容。到目前为止,我只能将它打印出来只是字符串(或只是int,或两者),如果格式正确的话。如何跳过空白或格式错误的线条(当前与前一行重复)并存储结果?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "list.h"
#define MAX_LINE_LENGTH 400
int main ()
{
char input[MAX_LINE_LENGTH];
char name[MAX_LINE_LENGTH];
int number;
FILE *fr;
fr = fopen ("updates.txt", "r");
if (!fr)
return 1;
while (fgets(input,MAX_LINE_LENGTH, fr)!=NULL)
{
/* get a line, up to 200 chars from fr. done if NULL */
sscanf (input, "%s", name);
/* convert the string to just a string */
printf ("%s\n", name);
}
fclose(fr);
return 0;
}
示例文本文件
Cold 5 10 Flames Doggy 4 Flames 11 Cold 6
答案 0 :(得分:2)
您可以使用fscanf功能。格式字符串中的空格使其忽略任何空格,制表符或换行符。
答案 1 :(得分:0)
您的问题的可能解决方案位于以下代码中。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "list.h"
#define MAX_LINE_LENGTH 400
int main ()
{
char input[MAX_LINE_LENGTH];
char name[MAX_LINE_LENGTH];
char namet[MAX_LINE_LENGTH];
int number;
FILE *fr;
fr = fopen ("updates.txt", "r");
if (!fr)
return 1;
while (fgets(input,MAX_LINE_LENGTH, fr)!=NULL)
{
memset(name, 0, MAX_LINE_LENGTH);
memset(namet, 0, MAX_LINE_LENGTH);
/* get a line, up to 200 chars from fr. done if NULL */
//sscanf (input, "%s %d", name, &number);
sscanf (input, "%s %s", name, namet);
// TODO: compare here for name shall only contain letters A-Z/a-z
// TODO: compare here for namet shall only contain digits
// If both above condition true then go ahead
number = atoi(namet);
if(name[0] != '\0')
{
/* convert the string to just a string */
printf ("%s %d\n", name, number);
//printf ("%s %s\n", name, namet);
}
}
fclose(fr);
return 0;
}
答案 2 :(得分:0)
而不是
while (fgets(input,MAX_LINE_LENGTH, fr)!=NULL)
{
/* get a line, up to 200 chars from fr. done if NULL */
sscanf (input, "%s", name);
/* convert the string to just a string */
printf ("%s\n", name);
}
执行此操作(它将删除所有空格和\ n,然后取出标记)
while (fgets(input,MAX_LINE_LENGTH, fr)!=NULL)
{
char* token = strtok(input, " \n");
while ( token != NULL )
{
printf( "%s", token );
token = strtok(NULL, " \n");
}
}