最好的方法是将每行的数据读入缓冲区,然后解析缓冲区。这可以扩展到读取大块数据。
用于fgets
将数据读入缓冲区。
用于strchr
查找分隔符。
例子:
#include <stdio.h>
#include <stdlib.h>
#define MAX_TEXT_LINE_LENGTH 128
int main(void)
{
FILE * my_file("data.txt", "r");
char text_read[MAX_TEXT_LINE_LENGTH];
char key_text[64];
char value_text[64];
if (!my_file)
{
fprintf(stderr, "Error opening data file: data.txt");
return EXIT_FAILURE;
}
while (fgets(text_read, MAX_TEXT_LINE_LENGTH, my_file))
{
char * p;
//----------------------------------------------
// Find the separator.
//----------------------------------------------
p = strchr('/');
key_text[0] = '\0';
value_text[0] = '\0';
if (p != 0)
{
size_t key_length = 0;
key_length = p - text_read;
// Skip over the separator
++p;
strcpy(value_text, p);
strncpy(key_text, text_read, key_length);
key_text[key_length] = '\0';
fprintf(stdout,
"Found, key: \"%s\", value: \"%s\"\n",
key_text,
value_text);
}
else
{
fprintf(stdout,
"Invalid formatted text: \"%s\"\n",
text_read);
}
} // End: while fgets
fclose(my_file);
return EXIT_SUCCESS;
}
注意:以上代码未经编译或测试,仅用于说明目的。