Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
IOstream Library
manipulators
classes:
filebuf
fstream
ifstream
ios
iostream
ios_base
istream
istringstream
ofstream
ostream
ostringstream
streambuf
stringbuf
stringstream
objects:
cerr
cin
clog
cout
types:
fpos
streamoff
streampos
streamsize
stringstream
stringstream::stringstream
member functions:
stringstream::rdbuf
stringstream::str


stringstream::str

public member function
string str ( ) const;
void str ( const string & s );

Get/set the associated string object

The first version returns a copy of the string object currently associated with the string stream buffer.

The second syntax copies the content of string s to the string object associated with the string stream buffer.

The function effectivelly calls rdbuf()->str().

Notice that setting a new string does not clear the error flags currently set in the stream object unless the member function clear is explicitly called.

Parameters

s
String object whose content is to be copied to the string stream buffer.

Return Value

The first version returns a copy of the string object currently associated with the stream buffer.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// stringstream::str
#include <iostream>
#include <sstream>
#include <string>
using namespace std;
int main () {
  stringstream oss;
  string mystr;
  oss << "Sample string";
  mystr=oss.str();
  cout << mystr;
  return 0;
}


Basic template member declaration

( basic_stringstream<charT,traits,Allocator> )
1
2
basic_string<charT,traits,Allocator> str () const;
void str (const basic_string<charT,traits,Allocator> & s );


See also