fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. string s = "_123_asd";
  9. replace(s.begin(), s.end(), '_', ':');
  10. cout << s;
  11. // your code goes here
  12. return 0;
  13. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
:123:asd