string.insert() : string insert « String « C++






string.insert()

  
 

#include <iostream>
#include <string>
using namespace std;

int main()
{
  string str1("String handling C++ style.");
  string str2("STL Power");

  cout << "Initial strings:\n";
  cout << "str1: " << str1 << endl;
  cout << "str2: " << str2 << "\n\n";

  // demonstrate insert()
  cout << "Insert str2 into str1:\n";
  str1.insert(6, str2);
  cout << str1 << "\n\n";

  return 0;
}

/* 
Initial strings:
str1: String handling C++ style.
str2: STL Power

Insert str2 into str1:
StringSTL Power handling C++ style.


 */        
    
  








Related examples in the same category

1.Insert one string at location 10 of another string
2.string.insert( 3, string4, 0, string::npos )
3.Insert one string into another
4.Insert into str by using the iterator version of insert()