Knowledge Walls
Venkatesan
Hyderabad, Andhra Pradesh, India
Passcode:
assign() in String Class in CPP of Programming in CPP
1595 Views
Usage 
The assign method is used to replace current contents with new string value.
Syntax 
str.assign(string);
Example
#include <iostream>
#include <string>

int main ()
{
  std::string p;
  std::string cont="welcome to CPP";

  str.assign(cont);
  std::cout <<p << '\n';

  str.assign(cont,12,3);
  std::cout << p<< '\n';       
  return 0;
}
Output 
Welcome to CPP
CPP
Next Topics
Next lessons of current book.
String Class in CPP of Programming in CPP
String Class in CPP of Programming in CPP
String Class in CPP of Programming in CPP
Previous Topics
Previous lessons of current book.
String Class in CPP of Programming in CPP
Classes and Objects in CPP of Programming in CPP
Classes and Objects in CPP of Programming in CPP
Classes and Objects in CPP of Programming in CPP
Math Library Functions of Programming in CPP
Best Lessons of "Programming in CPP"
Top lessons which are viewed more times.
String Class in CPP of Programming in CPP
Math Library Functions of Programming in CPP
String Class in CPP of Programming in CPP
Classes and Objects in CPP of Programming in CPP
Math Library Functions of Programming in CPP
User-defined Functions of Programming in CPP
String Class in CPP of Programming in CPP
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details