blob: f2cbb8de9cf047b1e71111b618a021da08d3900e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/11 12:43:55 by dkaiser #+# #+# */
/* Updated: 2025/02/12 10:30:49 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include <cstddef>
#include <fstream>
#include <iostream>
#include <string>
static void replace(const std::string &filename,
const std::string &find_str,
const std::string &replace_str)
{
std::ifstream infile(filename);
std::ofstream outfile(filename + ".replace");
std::string line;
std::size_t find_pos;
std::size_t search_from;
while (std::getline(infile, line))
{
find_pos = 0;
search_from = 0;
while (find_pos != std::string::npos)
{
find_pos = line.find(find_str, search_from);
if (find_pos == std::string::npos)
{
break;
}
outfile << line.substr(search_from, find_pos);
outfile << replace_str;
search_from = find_pos + find_str.length();
}
outfile << line.substr(search_from) << std::endl;
}
}
int main(int argc, char *argv[])
{
if (argc != 4)
{
std::cerr << "Expected args: <filename> <find_str> <replace_str>";
std::cerr << std::endl;
return 1;
}
replace(argv[1], argv[2], argv[3]);
}
|