Assign one string to another : string append « string « C++ Tutorial






#include <iostream>
#include <string>

using namespace std;

int main()
{
  string str1("A");
  string str2("B");
  string str3("G");
  string str4;

  cout << "  str1: " << str1 << endl;
  cout << "  str2: " << str2 << endl;
  cout << "  str3: " << str3 << "\n\n";


  // Assign one string to another.
  str4 = str1;
  cout << "str4 after being assigned str1: " << str4 << "\n\n";

  return 0;
}








15.2.string append
15.2.1.Append two strings
15.2.2.Assign one string to another
15.2.3.string overloaded +=
15.2.4.Append subscript locations 4 through the end of one string to create another string