从C中较长的字符串中提取子字符串的最佳方法是什么

时间:2019-05-24 07:07:54

标签: c string file-io

我有一个文件格式为字符串,后跟一长串用空格分隔的浮点数:

字符串(空格)浮点(空格)...浮点

字符串(空格)浮点(空格)...浮点

字符串(空格)浮点(空格)...浮点

每行的字符串和浮点数都将放入结构中,目前我的操作方式是使用fgets将每一行存储为字符串,然后递增该字符串,检查空格之间的子字符串,然后将这些字符串转换为浮点数并将其存储在我的结构中。

这变得非常乏味且非常复杂。有更好的方法吗?

1 个答案:

答案 0 :(得分:1)

根据要固定或可变的变量数量,有两种可能的方法。如果浮点数固定,可能的解决方案可能是:

带有数据的“ test_data.txt”文件:

test1 1.41 1.73 2.78 3.14
test2 2.41 2.73 3.78 4.14

用于读取数据的源文件可能是:

#include <stdio.h>

int main(int argc, char ** argv)
{
        FILE * file = fopen("test_data.txt", "r");
        if (file == NULL)
        {
                printf("Cannot open file.\n");
                return 1;
        }

        char string[32] = { 0 };
        float f1, f2, f3, f4;
        while (feof(file) == 0)
        {
                fscanf(file, "%s %f %f %f %f", string, & f1, & f2, & f3, & f4);
                printf("For string: %s values are:\n\t%f %f %f %f\n", string, f1, f2, f3, f4);
        }

        fclose(file);
        return 0;
}

但是考虑到您所说的浮点数是可变的,可能的解决方案可能是这样的:

带有数据的“ test_data.txt”文件:

test1 1.41 1.73 2.78 3.14
test2 2.41 2.73 3.78 4.14 5.15

用于读取数据的源文件可能是:

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

static void remove_trailing_spaces(char ** begin)
{
        while (isspace(** begin))
                ++(* begin);
        return;
}

static void get_string(char ** begin, char * output)
{
        remove_trailing_spaces(begin);

        char * end = * begin;
        while (isalnum(* end))
                ++end;

        strncpy(output, * begin, (int)(end - * begin));
        * begin = end;
        return;
}

static void get_float(char ** begin, float * output)
{
        remove_trailing_spaces(begin);

        char * end;
        * output = strtof(* begin, & end);
        * begin = end;
        return;
}

int main(int argc, char ** argv)
{
        FILE * file = fopen("test_data.txt", "r");
        if (file == NULL)
        {
                printf("Cannot open file\n");
                return 1;
        }

        char buffer[1024] = { 0 };
        char string[32] = { 0 };
        while (feof(file) == 0)
        {
                if (fgets(buffer, 1024, file) != NULL)
                {
                        char * begin = & buffer[0];
                        get_string(& begin, string);
                        printf("For string: %s values are:\n\t", string);

                        while ((feof(file) == 0) && (* begin != '\n'))
                        {
                                float f = 0.0;
                                get_float(& begin, & f);
                                printf("%f ", f);
                        }
                        printf("\n");
                }
        }
        fclose(file);
        return 0;
}

请记住,这可能不是最好的解决方案。它仅显示了在test_data.txt文件的每一行中使用不断变化的数据数量来解析文本文件比在第一种情况下要花费更多的精力。