-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring.cpp
More file actions
53 lines (46 loc) · 893 Bytes
/
string.cpp
File metadata and controls
53 lines (46 loc) · 893 Bytes
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
#include<fstream>
#include<iostream>
#include<string>
using namespace std;
int main(int argc, char *argv[]) {
char*namefile1;
char*namefile2;
if(argc > 1) {
namefile1 = argv[1];
namefile2 = argv[2];
}
else{
printf("No file name");
return 1;
}
string f, s;
char c;
int i,k;
ifstream fin;
ofstream fout;
fin.open(namefile1);
fout.open(namefile2);
if (!(fin.is_open())) {
cout << "FILE №1 NOT OPEN" << endl;
return 0;
}
if (!(fout.is_open())) {
cout << "FILE №2 NOT OPEN" << endl;
return 0;
}
cout << "Enter symbols:" << endl;
cin >> c;
fin >> f >> s;
k = f.length();//считаем количество символов в строке f
for (i = 0; i < (k * (s.length()) ); i++) {
if (f[i] == c) {
f.replace(i,0,s);
i = i + s.length();
}
}
fout << f;
cout << "completed"<< endl;
fin.close();
fout.close();
return 0;
}