Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
668 views

How to parse complex string with C++?

I'm trying to figure out how could I parse this string using "sstream" and C++ The format of it is: "string,int,int". I need to be able to assign the first part of the string which contains an IP ...
5
votes
2answers
2k views

Why is stringstreams rdbuf() and str() giving me different output?

I have this code, int main() { std::string st; std::stringstream ss; ss<<"hej hej med dig"<<std::endl; std::getline(ss,st,' '); std::cout ...
3
votes
3answers
2k views

Have a C++ Class act like a custom ostream, sstream

I have a C++ class MyObject and I want to be able to feed this data like I would to a osstream (but unlike a direct sstream, have the incoming data be formatted a special way). I can't seem to figure ...
2
votes
2answers
112 views

Passing unknown classes to String Streams in C++

I am using a template function and I am passing and I may be sending instances of a variety of classes to a string stream. What can I do to make sure this continues to work? Let me be more specific ...
2
votes
3answers
697 views

C++ stringstream returning extra character?

I've been attempting to use the C++ stringstream class to do some relatively simple string manipulations, but I'm having a problem with the get() method. For some reason whenever I extract the output ...
1
vote
2answers
105 views

using sstream header file in C++

so I was trying to utilise the istringstream to parse through a text file. The idea is to break down each line by space and based on the substring do stuff. The code works fine except for two things, ...
1
vote
2answers
95 views

parsing an sstream

I am parsing a file which contains both strings and numerical values. I'd like to process the file field by field, each delimited by a space or an end-of-line character. The ifstream::getline() ...
1
vote
5answers
202 views

sstream not working…(STILL)

I am trying to get a double to be a string through stringstream, but it is not working. std::string MatlabPlotter::getTimeVector( unsigned int xvector_size, double ts ){ std::string tv; ...
0
votes
4answers
50 views

g++ Compile error: missing ';'

I am trying to run this code tResults = itos(Freq)+"\t"dtos(maxTemp)+"\t"+dtos(xB * FP.parU[1])+"\t"+dtos(xH * FP.parI[1])+"\t"+dtos(FP.parI[1]); string MaxResults::itos(int i) { stringstream ...
0
votes
1answer
93 views

Convert an ostream into a string (not a sstream)

I specifically need to convert an ostream into a string. To be more precise, I have a function: ostream& f(ostream& out); (This function is mainly used for a polymorphic overcharge of the ...
0
votes
1answer
206 views

Custom ostream without flushing?

Currently I create an ostream with a custom stringbuf derived object, but it uses sync() to print text on the screen. Is there a way to avoid having to flush it? I really want to do logStream << ...