Tuesday, January 18, 2011

Stream classes for strings

So far, all of the I/O examples you have seen have been writing to cout or reading from cin. However, there is another set of classes called the stream classes for strings that allow you to use the familiar insertions (<<) and extraction (>>) operators to work with strings. Like istream and ostream, the string streams provide a buffer to hold data. However, unlike cin and cout, these streams are not connected to an I/O channel (such as a keyboard, monitor, etc…). One of the primary uses of string streams is to buffer output for display at a later time, or to process input line-by-line.
There are six string classes for streams: istringstream (derived from istream), ostringstream (derived from ostream), and stringstream (derived from iostream) are used for reading and writing normal characters width strings. wistringstream, wostringstream, and wstringstream are used for reading and writing wide character strings. To use the stringstreams, you need to #include the sstream header.
There are two ways to get data into a stringstream:
1) Use the insertion (<<) operator:
1stringstream os;
2os << "en garde!" << endl; // insert "en garde!" into the stringstream
2) Use the str(string) function to set the value of the buffer:
1stringstream os;
2os.str("en garde!"); // set the stringstream buffer to "en garde!"
There are similarly two ways to get data out of a stringstream:
1) Use the str() function to retrieve the results of the buffer:
1stringstream os;
2os << "12345 67.89" << endl;
3cout << os.str();
This prints:
12345 67.89
2) Use the extraction (>>) operator:
01stringstream os;
02os << "12345 67.89"; // insert a string of numbers into the stream
03 
04string strValue;
05os >> strValue;
06 
07string strValue2;
08os >> strValue2;
09 
10// print the numbers separated by a dash
11cout << strValue << " - " << strValue2 << endl;
This program prints:
12345 - 67.89
Note that the >> operator iterates through the string -- each successive use of >> returns the next extractable value in the stream. On the other hand, str() returns the whole value of the stream, even if the >> has already been used on the stream.
Conversion between strings and numbers
Because the insertion and extraction operators know how to work with all of the basic data types, we can use them in order to convert strings to numbers or vice versa.
First, let's take a look at converting numbers into a string:
01stringstream os;
02 
03int nValue = 12345;
04double dValue = 67.89;
05os << nValue << " " << dValue;
06 
07string strValue1, strValue2;
08os >> strValue1 >> strValue2;
09 
10cout << strValue1 << " " << strValue2 << endl;
This snippet prints:
12345 67.89
Now let's convert a numerical string to a number:
1stringstream os;
2os << "12345 67.89"; // insert a string of numbers into the stream
3int nValue;
4double dValue;
5 
6os >> nValue >> dValue;
7 
8cout << nValue << " " << dValue << endl;
This program prints:
12345 67.89
Clearing a stringstream for reuse
There are several ways to empty a stringstream's buffer.
1) Set it to the empty string using str():
1stringstream os;
2os << "Hello ";
3 
4os.str(""); // erase the buffer
5 
6os << "World!";
7cout << os.str();
2) Call erase() on the result of str():
1stringstream os;
2os << "Hello ";
3 
4os.str(std::string()); // erase the buffer
5 
6os << "World!";
7cout << os.str();
Both of these programs produce the following result:
World!
When clearing out a stringstream, it is also generally a good idea to call the clear() function:
1stringstream os;
2os << "Hello ";
3 
4os.str(""); // erase the buffer
5os.clear(); // reset error flags
6 
7os << "World!";
8cout << os.str();
clear() resets any error flags that may have been set and returns the stream back to the ok state. We will talk more about the stream state and error flags in the next lesson.

No comments: