Use the generic replace algorithm to replace all occurrences of R by S : replace « STL Algorithms Modifying sequence operations « C++






Use the generic replace algorithm to replace all occurrences of R by S

 
 
#include <iostream>
#include <cassert>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;

int main()
{
  string s("FERRARI");
  vector<char> vector1(s.begin(), s.end());

  
  replace(vector1.begin(), vector1.end(), 'R', 'S');

  for(int i=0;i<vector1.size();i++){
     cout << vector1[i] << " ";
  }

  return 0;
}
/* 
F E S S A S I 
 */
        
  








Related examples in the same category

1.Use std::replace to replace elements in vector by value
2.Use replace to replace all elements with value 6 with 42
3.Use replace to replace all elements with value less than 5 with 0