-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathreplace_une.cpp
39 lines (32 loc) · 877 Bytes
/
replace_une.cpp
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
#include <iostream>
#include <string>
using namespace std;
class Test {
public:
Test(string _str) : str(_str) {}
bool replace_str(string &s, const string &oldsubstr, const string &newsubstr) {
s.assign(str.begin(), str.end());
string::size_type idx;
idx = s.find(oldsubstr);
if(idx!=string::npos) {
s.replace(idx, oldsubstr.size(), newsubstr);
str.assign(s.begin(), s.end());
return true;
}
return false;
}
void print_replaced_str(const string &_old, const string &_new) {
if (!replace_str(str, _old, _new))
cout << "ERROR!\n";
else
cout << str << endl;
}
private:
string str;
};
int main()
{
Test test("This is [space] a demonstration test.");
test.print_replaced_str("[space]", "only");
return 0;
}