Tagged Questions

34
votes
3answers
14k views

In C++, how do you clear a stringstream variable?

I've tried several things already, std::stringstream m; m.empty(); m.clear(); both of which don't work.
1
vote
1answer
86 views

C++ correct use of stringstream::str()?

Consider the following C++ program: #include <iostream> #include <string> #include <sstream> using namespace std; int main (void) { string l1, l2; int n1, n2; ...
1
vote
1answer
88 views

converting strings from a map to a 2d vector character-wise

I have an array of strings which need to be taken into a map. Since the array size is variable, I need a 2d vector to obtain the string character-wise. i need both formats of storage for operations i ...
0
votes
6answers
424 views

std::stringstream as parameter

I'm somewhat new to the C++ language. I'm writing a utility class for logging to file. It works beautifully except that now I would like to enhance it by making it more convenient to use (e.g. pass ...
0
votes
5answers
885 views

std::stringstream to read int and strings, from a string

I am programming in C++ and I'm not sure how to achieve the following: I am copying a file stream to memory (because I was asked to, I'd prefer reading from stream), and and then trying to access its ...