Last active
August 29, 2015 14:02
-
-
Save mrngm/c71f8dd166ae7f58c8df to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Schrijf een functie vervang2 () die hetzelfde doet als bij onderdeel a. | |
Maak bij het schrijven van deze functie gebruik van de functies find() en | |
replace() uit de klasse string. | |
Prototype: | |
void vervang2( string& s, char bron, char doel ); | |
*/ | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
void vervang2( string& s, char bron, char doel ); | |
int main() { | |
string str ( "staal"); | |
vervang2( str, 'a', 'e' ); | |
cout << str << endl; | |
} | |
void vervang2(string& s, char bron, char doel) { | |
string::iterator pos; | |
string str; | |
for(pos = s.begin(); pos != s.end(); pos++) { | |
if (*pos == bron) { | |
s.replace( s.find(*pos), 1, 1, doel); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment