Skip to content

Instantly share code, notes, and snippets.

@mrngm
Last active August 29, 2015 14:02
Show Gist options
  • Save mrngm/c71f8dd166ae7f58c8df to your computer and use it in GitHub Desktop.
Save mrngm/c71f8dd166ae7f58c8df to your computer and use it in GitHub Desktop.
/*
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