Switch to full style
C++ code examples
Post a reply

Append string in C++

Thu Nov 13, 2008 7:19 pm

Append substring to string using C++.
cpp code
#include <iostream>
using std::cout;
using std::endl;

#include <string>
using std::string;

int main()
{
string string1( "cat" );
string string3;

string3.assign( string1 );

cout << "string1: " << string1
<< "\nstring3: " << string3 << "\n\n";


string3 += "pet";
string3.append( string1, 1, string1.length() - 1 );

cout << "string1: " << string1
<< "\nstring3: " << string3 << "\n\n";

return 0;
}




Post a reply
  Related Posts  to : Append string in C++
 Append to file using php     -  
 append,prepend,add after and add before     -  
 stream filter to append     -  
 recursive string reversal- reverse string     -  
 Splitting a String Based on a Found String     -  
 check if string ends with specific sub-string in php     -  
 check if string start with a specific sub-string in PHP     -  
 String token for string split     -  
 Pad a string to a certain length with another string     -  
 String Flatten (C++)     -