Insert one string into another. - C++ STL

C++ examples for STL:string

Description

Insert one string into another.

Demo Code

#include <iostream>
#include <string>
using namespace std;
int main()//from ww w . j  a v  a2  s  . c  o  m
{
   string str1("Alpha");
   string str2("Beta");
   string str3("Gamma");
   string str4;
   str4 = str1 + str3;
   str4.insert(5, str2);
   cout << "str4 after inserting str2: " << str4 << "\n\n";
   return 0;
}

Result


Related Tutorials