gpt4 book ai didi

C++ 编辑文本文件?

转载 作者:行者123 更新时间:2023-11-28 03:49:00 25 4
gpt4 key购买 nike

我正在创建这个可以节省很多时间的简单程序,但我有点卡住了。

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

using namespace std;

int main()
{
vector<string> tempfile;
string line;
ifstream oldfile("old.lua");
if (oldfile.is_open())
{
while (oldfile.good())
{
getline(oldfile, line);
tempfile.push_back(line + "\n");
}
oldfile.close();
}
else
{
cout << "Error, can't find old.lua, make sure it's in the same directory as this program, and called old.lua" << endl;
}

ofstream newfile("new.lua");
if (newfile.is_open())
{
for (int i=0;i<tempfile.size();i++)
{
for (int x=0;x<tempfile[i].length();x++)
{
newfile << tempfile[i][x];
}
}
newfile.close();
}
return 0;
}

所以,它现在所做的只是复制一个文件。但我已经尝试这样做了,所以它改变了 fe。每个“函数”词到“def”,我已经尝试了一切并已经用谷歌搜索了,找不到足够有用的东西,我唯一发现的是使用 sstream,但它毕竟没有用,或者我只是不够熟练,所以如果有人能给我任何提示或帮助,因为我真的被卡住了? :d

最佳答案

boost 具有替换所有功能,它比简单的搜索-替换-重复算法更有效。这就是我要做的:

std::string file_contents = LoadFileAsString("old.lua");
boost::replace_all(file_contents, "function", "def");
std::ofstream("new.lua") << file_contents;

LoadFileAsString 是我自己的函数,看起来像这样:

std::string LoadFileAsString(const std::string & fn)
{
std::ifstream fin(fn.c_str());

if(!fin)
{
// throw exception
}

std::ostringstream oss;
oss << fin.rdbuf();

return oss.str();
}

http://www.boost.org/doc/libs/1_33_1/doc/html/replace_all.html

关于C++ 编辑文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6268905/

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