gpt4 book ai didi

c++ - 用C++读取文本文件读入特定关键字后面的值

转载 作者:行者123 更新时间:2023-11-28 04:18:59 27 4
gpt4 key购买 nike

我正在尝试用 C++17 编写一个通用文本文件阅读器,它将逐行搜索文本文件以查找特定关键字,并且代码应读取该关键字后面的数据点。我在类中使用模板函数编写它,以便它可以读取任何数据类型。在此示例中,假设我有以下标题为 test.txt 的文本文件。

- test.txt file
integer key: 4
Float key: 6.04876
Double Key: 12.356554545476756565
String Key: test

包含模板类的头文件如下所示。在这种情况下,ReadTextFile 类继承了另一个类来协助检查文件状态。

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>

#ifndef read_files_hpp
#define read_files_hpp

class FileStatus
{
public:
template <class container>
bool file_exists(const container& file_name);
template <class file_container>
bool is_file_open(const file_container& file);
};
template <class container>
bool FileStatus::file_exists(const container& file_name)
std::ifstream ifile(file_name.c_str());
return (bool)ifile;
}

template <class file_container>
bool FileStatus::is_file_open(const file_container& file)
{
return file.is_open();
}
// ----------------------------------------------------------------


class ReadTextFile : public FileStatus
{
public:
template <class dtype, class container1, class container2>
dtype read_key_words(const container1& file_name, const
container2& key_word);
};

template <class dtype, class container1, class container2>
dtype ReadTextFile::read_key_words(const container1& file_name,
const container2& key_word)
{
int j = 3;
if (bool i = file_exists(file_name) != 1) {
std::cout << "FATAL ERROR: " << file_name <<
" not found" << std::endl;
return -1;
}
std::ifstream file(file_name);
if (is_file_open(file))
{
std::string line;
while (std::getline(file, line))
{
std::cout << line.c_str() << std::endl;
}
}
return j;
}
// ================================================================
// ================================================================
#endif

调用程序main.cpp如下所示;

#include <iostream>
#include <fstream>
#include "read_files.hpp"
int main() {
std::string file_name("../data/unit_test/keys.txt");
std::string key_word("integer key:");
int j;
j = txt_file.read_key_words<int>(file_name, key_word);
}

在这个测试用例中,类被实例化为 int 类型,所以在程序完全编写之前,我从函数 int j = 3; 返回变量 read_key_words()。目前代码可以读取同一目录下的文件test.txt,并且每行都正确读取。我希望代码解析每一行以识别短语 integer key: 是否存在,然后读取它后面的变量,作为函数实例化的数据类型,在这种情况下是一个整数。我怎样才能在代码中实现这一点?

最佳答案

浏览每一行时,搜索关键字。如果找到,则抓取下一个构成该类型的数据:

dtype j;
while (std::getline(file, line)) {
if (auto pos = line.find(key_word); pos != std::string::npos) {
std::stringstream iss(line.substr(pos + key_word.size()));
iss >> j;
break;
}
}

关于c++ - 用C++读取文本文件读入特定关键字后面的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55893140/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com