123456
std::string str = "HelloWorld"; std::cout << "Before: " << str << std::endl; for(std::string::size_type i = 0; i < str.length(); ++i) { str.insert(++i,"3"); } std::cout << "After: " << str << std::endl;
12
Before: HelloWorld After: H3e3l3l3o3W3o3r3l3d3