美好的一天,我正在为我的C ++主题制作数据库项目,我想询问有关如何在C ++中编辑或替换文件的帮助。我找不到一个最简单的程序,可以编辑或替换我创建的文件中的项目。
TEXT.TXT:
name: John Rodriguez
age:12
name: Edward Bantatua
age:15
name: Hemerson Fortunato
age:18
在示例中,我想编辑Hemerson Fortunato并更改他的姓名和年龄。任何人都可以帮我制作一个程序吗?大进步感谢任何帮助我的人。抱歉我的英语不好。
答案 0 :(得分:3)
将文件内容读入字符串并使用replace()
。然后将字符串写回文件。像这样:
#include <string>
#include <fstream>
#include <sstream>
using namespace std;
int main()
{
ostringstream text;
ifstream in_file("Text.txt");
text << in_file.rdbuf();
string str = text.str();
string str_found = "Fortunato";
string str_replace = "NotFortunato";
size_t pos = str.find(str_search);
str.replace(pos, string(str_search).length(), str_replace);
in_file.close();
ofstream out_file("Text.txt");
out_file << str;
}
使用regex_replace
(C ++ 11)或boost:regex
进行更高级的查找&amp;替换操作。
答案 1 :(得分:1)
在C ++中,文件操作主要有两种不同的方式:一种是使用Fstream函数,主要用于Turbo C,另一种是FILE作为数据类型。
现在你可以做的是创建一个文件指针。
fstream fp;
fp.open("Your_file_path.txt","w");
以上代码将帮助您打开您的文件。 接下来,您需要将此文件放在字符串或char数组中。 为此,您可以使用get()函数。 为了得到它,你可以添加这个
yourarray=fp.get();
在循环中直到(EOF),这意味着文件的结尾也被称为\ 0。
现在,您已将ur文件的所有内容复制到char数组中。您需要做的就是在数组中搜索您想要的内容,编辑它并用char数组替换整个文件内容。
答案 2 :(得分:0)
//This is edit mode program
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<iostream.h>
int main()
{
FILE*fp1, *fp2;
char fname[100],lname[100];
char fncomp[100],lncomp[100];
int age;
fp1 = fopen("OriginalTextFile.txt","r"){
}
fp2 = fopen("TemporaryTextFile.txt","w"){
}
printf("Enter First name of a person that you want to edit: ");
scanf("%s", &fncomp);
while(!feof(fp1)){
fscanf(fp1,"%s %s %d", fname,lname,age);
if(strcmpi(fncomp,fname)==0)
printf("%s %s %d\n\n", fname,lname,age);
printf("Replace name with: ");
scanf("%s %s",&repfname, &replname);
fname = repfname;
lname = replname;
fprintf(fp2,"%s %s %d", fname,lname,age);
}
fclose(fp1);
fclose(fp2);
fp2 = fopen("TemporaryTextFile.txt","r"){
}
fp1 = fopen("OriginalTextFile.txt","w"){
}
while(!feof(fp2))
{
fscanf(fp2,"%s %s %d", fname,lname,age);
fprintf(fp1,"%s %s %d", fname,lname,age);
}
fclose(fp1);
fclose(fp2);
getch();
}
答案 3 :(得分:0)
#include <boost\filesystem.hpp>
#include <boost/regex.hpp>
#include <boost/algorithm/string/replace.hpp>
std::string str_find = "blablabla";
std::string str_replace = "nonono";
std::ifstream filein("C:\\Users\\myfilein.txt");
ofstream fileout("C:\\Users\\myfileout.txt");
if ( filein )
{
std::stringstream buffer;
buffer << file.rdbuf();
filein.close();
// Create a string variable to apply boost::regex
std::string readText;
readText = buffer.str();
// Regular expression finding comments
boost::regex re_comment(str_find);
// Replace via regex replace
std::string result = boost::regex_replace(readText, re_comment, str_replace);
ofstream out_file(fileout);
out_file << result;
}
创建包含所有文本和表达式“ blablabla”的文件“ .txt”。这将由“ nonono”代替。
答案 4 :(得分:0)
void fileEdit(string filename, string search, string replace)
{
ostringstream text;
ifstream in_file(filename);
text << in_file().rdbuf();
string str = text.str();
string str_search = search;
string str_replace = replace;
size_t pos = str.find(str_search);
str.replace(pos, string(str_search).length(), str_replace);
in_file().close();
ofstream out_file(filename);
out_file << str;
}
使用
fileEdit("text.txt", "someTextToReplace", "Some more text")
在 main() 和文件 text.txt 中,“someTextToReplace”将被替换为“更多文本”。