473,385 Members | 2,274 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

stringstream

is there an easy way to clear a stringstreams contents.
My problem is that I want output to be limited to 80 characters
a line. So I use operator<< to a stringstream object 'oss' and
if tellp() is > 80, I use operator<< to output
oss.rdbuf()->str();
Afterwards I want to clear oss contents. Is there a way.
pubseekpos(0) seems not to delete the former contents.
Is there maybe a more elegant way to archieve what I want?
I find 'oss.rdbuf()->str()' already to complicated.

cout << oss; oss.clear();

would look much nicer.

thanks,
marc

Jul 19 '05 #1
3 14132

"Marc Schellens" <m_*********@hotmail.com> wrote in message
news:3F**************@hotmail.com...
is there an easy way to clear a stringstreams contents.
My problem is that I want output to be limited to 80 characters
a line. So I use operator<< to a stringstream object 'oss' and
if tellp() is > 80, I use operator<< to output
oss.rdbuf()->str();
Afterwards I want to clear oss contents. Is there a way.
pubseekpos(0) seems not to delete the former contents.
Is there maybe a more elegant way to archieve what I want?
I find 'oss.rdbuf()->str()' already to complicated.

cout << oss; oss.clear();

would look much nicer.

thanks,
marc


cout << oss.str() ; oss.str("")

Cheers,
Sean
Jul 19 '05 #2
Thanks,
thats exactly what I wanted to know.
But as we are on it:
How can I check if there is already an 'endl' inserted in an
ostringstream ?
My tries with pubseekpos(...) weren't successful so far...
Do I need a stringstream then?

thanks,
marc

Sean wrote:
"Marc Schellens" <m_*********@hotmail.com> wrote in message
news:3F**************@hotmail.com...
is there an easy way to clear a stringstreams contents.
My problem is that I want output to be limited to 80 characters
a line. So I use operator<< to a stringstream object 'oss' and
if tellp() is > 80, I use operator<< to output
oss.rdbuf()->str();
Afterwards I want to clear oss contents. Is there a way.
pubseekpos(0) seems not to delete the former contents.
Is there maybe a more elegant way to archieve what I want?
I find 'oss.rdbuf()->str()' already to complicated.

cout << oss; oss.clear();

would look much nicer.

thanks,
marc

cout << oss.str() ; oss.str("")

Cheers,
Sean


Jul 19 '05 #3

"Marc Schellens" <m_*********@hotmail.com> wrote in message
news:3F**************@hotmail.com...
Thanks,
thats exactly what I wanted to know.
But as we are on it:
How can I check if there is already an 'endl' inserted in an
ostringstream ?
My tries with pubseekpos(...) weren't successful so far...
Do I need a stringstream then?

thanks,
marc


Marc,

Not really sure what you are looking for but
perhaps this will help :

string ms(oss.str());
int elp = ms.find("\n");
if (elp == string::npos)
cout << ms; // no endl found
else cout << ms.substr(0,elp); // endl found, show substring

HTH,
Sean

Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Bill Beacom | last post by:
Hi all, I am trying to use stringstream to assemble a text message from a set of user-defined objects that have the insertion operator overloaded. It seems to be putting them into the...
2
by: Woodster | last post by:
I am using std::stringstream to format a string. How can I clear the stringstream variable I am using to "re use" the same variable? Eg: Using std::string std::string buffer; buffer =...
3
by: Mike Chirico | last post by:
Sorry about the newbie question. What's the best way to convert numbers to strings in C++. The following works, but is it better than using the sprintf() "old C" way of converting? #include...
1
by: KidLogik | last post by:
Hello! I am using std::stringstream && std::string to parse a text file -> std::ifstream in; std::string s; std::streamstring ss; int n; I grab each line like so -> std::getline(in,s);
5
by: cherico | last post by:
I'd like to read stings from cin and put them in stringstream. I use a string object as an intermediate "container" to store data from cin and then put them in stringstream. stringstream ss ;...
5
by: William Payne | last post by:
How do you get rid the contents in a std::stringstream? I'm using one in a for loop to format some status messages which I print to the screen. The stringstream member function clear() only clears...
9
by: martinezfive | last post by:
Hi, I feel no doubt some documentation contains my answer, so bare with me. Given the following: #inclde <stdio.h> #include <sstream> void f() { std::stringstream a("Hello World!\n");
7
by: Ziyan | last post by:
I am writing a C/C++ program that runs in background (Linux). Therefore, normally no output would be written into standard output. However, sometimes I want to have debug message collected and sent...
4
by: clb | last post by:
I am trying to use stringstreams and my book doesn't cover the included methods. For example, if I init a istringstream on a string and suck all the data out, then put more stuff into the string,...
4
by: mthread | last post by:
Hi, I am using a string variable in which I do lot of appending. The only difficulty I am facing as of now is appending a integer/float value to this variable. Although I can accomplish this task...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.