Insertion Insert before given index std::string s1 = "abcghi"; std::string s2 = "def"; s1.insert(3, s2); s1.insert(5, 2, '*'); std::cout << s1; // output abcde**fghi