forked from pezy/CppPrimer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathex9_44.cpp
More file actions
31 lines (26 loc) · 721 Bytes
/
ex9_44.cpp
File metadata and controls
31 lines (26 loc) · 721 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
//
// ex9_44.cpp
// Exercise 9.44
//
// Created by pezy on 12/4/14.
// Copyright (c) 2014 pezy. All rights reserved.
//
// @Brief Rewrite the previous function using an index and replace.
// @See 9.43
#include <iostream>
#include <string>
using std::cout; using std::endl; using std::string;
void func(string &s, const string &oldVal, const string &newVal)
{
for (string::size_type i=0; i!=s.size(); ++i)
if (s.substr(i, oldVal.size()) == oldVal)
s.replace(i, oldVal.size(), newVal);
}
int main()
{
string str{"To drive straight thru is a foolish, tho courageous act."};
func(str, "tho", "though");
func(str, "thru", "through");
cout << str << endl;
return 0;
}