首页 > 后端开发 > C++ > 如何在 C 中可靠地从具有混合行结尾的文件中读取行?

如何在 C 中可靠地从具有混合行结尾的文件中读取行?

Linda Hamilton
发布: 2024-12-05 17:03:12
原创
231 人浏览过

How Can I Reliably Read Lines from a File with Mixed Line Endings in C  ?

克服 std :: ifstream 的行尾差异

处理文本文件时,行尾可能因平台而异,从而导致潜在的兼容性问题。虽然 C 运行时通常可以正确处理行结尾,但考虑跨平台共享文本文件的场景至关重要。

为了解决这个问题,让我们探索一个自定义函数 safeGetline,它可以无缝处理所有三种常见的行结尾格式(r、n 和 rn):

std::istream& safeGetline(std::istream& is, std::string& t)
{
    // Reset the string to be sure
    t.clear();

    // Utilize a sentry object for synchronized stream access
    std::istream::sentry se(is, true);
    std::streambuf* sb = is.rdbuf();

    while (true)
    {
        // Fetch the next character
        int c = sb->sbumpc();

        switch (c)
        {
            case '\n':
                // Encountered a line ending with just \n
                return is;
            case '\r':
                // Possibility of \r\n line ending
                if (sb->sgetc() == '\n')
                    sb->sbumpc();
                return is;
            case std::streambuf::traits_type::eof():
                // End of file reached
                if (t.empty())
                    is.setstate(std::ios::eofbit);
                return is;
            default:
                // Append the character to the string
                t += (char)c;
        }
    }
}
登录后复制

该函数通过使用流缓冲区从流中逐个读取字符来进行操作,这比读取单个字符更高效直接来自输入流。它处理各种行结束约定,并且还考虑了最后一行没有换行符的空的可能性。

为了演示此函数的用法,让我们创建一个简单的测试程序:

int main()
{
    // Specify the path to the text file containing lines with different line endings
    std::string path = ...;

    // Open the file for input
    std::ifstream ifs(path.c_str());
    if (!ifs)
    {
        std::cout << "Error opening the file." << std::endl;
        return EXIT_FAILURE;
    }

    // Count the number of lines in the file
    int n = 0;
    std::string line;
    while (!safeGetline(ifs, line).eof())
        ++n;

    // Display the count of lines
    std::cout << "The file contains " << n << " lines." << std::endl;
    return EXIT_SUCCESS;
}
登录后复制

通过使用 safeGetline 函数,该程序可以准确计算指定文本文件中的行数,无论行结束格式如何。

以上是如何在 C 中可靠地从具有混合行结尾的文件中读取行?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板