Tagged Questions
The stringstream tag has no wiki summary.
24
votes
4answers
5k views
Why was std::strstream deprecated?
I recently discovered that std::strstream has been deprecated in favor of std::stringstream. It's been a while since I've used it, but it did what I needed to do at the time, so was surprise to hear ...
20
votes
5answers
16k views
C++ stringstream, string, and char* conversion confusion
My question can be boiled down to, where does the string returned from stringstream.str().c_str() live in memory, and why can't it be assigned to a const char*?
This code example will explain it ...
17
votes
3answers
505 views
Why copying stringstream is not allowed?
int main()
{
std::stringstream s1("This is my string.");
std::stringstream s2 = s1; // error, copying not allowed
}
I couldn't find a reason as to why i can't copy stringstream. could you ...
11
votes
8answers
3k views
What's the difference between istringstream, ostringstream and stringstream? / Why not use stringstream in every case?
I think the title says pretty much everything, hehe. I would like you to tell me when to use std::istringstream, std::ostringstream and std::stringstream and why I shouldn't just use std::stringstream ...
8
votes
2answers
95 views
GCC compiler error when extracting a char from a temporary stream
I'm trying to read a single character from a stream. With the following code I get a "ambiguous overload" compiler error (GCC 4.3.2, and 4.3.4). What I'm doing wrong?
#include <iostream>
...
8
votes
10answers
390 views
How to deal with last comma, when making comma separated string? [closed]
Possible Duplicates:
Don't print space after last number
Printing lists with commas C++
#include <vector>
#include <iostream>
#include <sstream>
#include ...
8
votes
5answers
21k views
How to read file content into istringstream?
In order to improve performance reading from a file, I'm trying to read the entire content of a big (several MB) file into memory and then use a istringstream to access the information.
My question ...
7
votes
1answer
1k views
Ways std::stringstream can set fail/bad bit?
A common piece of code I use for simple string splitting looks like this:
inline std::vector<std::string> split(const std::string &s, char delim) {
std::vector<std::string> elems;
...
7
votes
2answers
745 views
Stream from std::string without making a copy?
I have a network client with a request method that takes a std::streambuf*. This method is implemented by boost::iostreams::copy-ing it to a custom std::streambuf-derived class that knows how to ...
6
votes
2answers
309 views
Ignore values from stringstream (like %*f in sscanf)
I'm trying to get rid of old unsafe C functions, including sscanf(). Right now I'm using
#include <sstream>
std::string = "111 222.2 333 444.4 555";
std::stringstream sstr(str);
int i, j, k;
...
6
votes
2answers
879 views
how copy from one stringstream object to another in C++?
I have stringstream object ss1
now I would like to create another copy from this one.
I try this
std::stringstream ss2 = ss1;
or
std::stringstream ss2(ss1)
neither works
The error message ...
6
votes
4answers
622 views
Is there a way to reduce ostringstream malloc/free's?
I am writing an embedded app. In some places, I use std::ostringstream a lot, since it is very convenient for my purposes. However, I just discovered that the performance hit is extreme since adding ...
6
votes
1answer
2k views
Best way to empty stringstream?
One of the possibilities is:
somestringstream.str("");
But is it most optimal? Is there any way to preserve stringstream internal buffer, so that following operator<<() calls would not ...
6
votes
4answers
1k views
Stringstream extract integer
Why do I fail to extract an integer value into the Num variable?
#include <sstream>
#include <vector>
#include <iostream>
using namespace std;
int main()
{
string Digits("1 2 ...
5
votes
1answer
719 views
How to clear stringstream?
stringstream parser;
parser << 5;
short top = 0;
parser >> top;
parser.str(""); //HERE I'M RESETTING parser
parser << 6; //DOESN'T PUT 6 INTO parser
short bottom = 0;
parser ...
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 ...
4
votes
2answers
160 views
Getting a buffer into a stringstream in hex representation:
If I had a buffer like:
uint8_t buffer[32];
and it was filled up completely with values, how could I get it into a stringstream, in hexadecimal representation, with 0-padding on small values?
I ...
4
votes
1answer
108 views
C++ converting file stream function to use a stringstream
I have loads of c++ classes that reads data from a file stream. The functions looks like this.
bool LoadFromFile(class ifstream &file);
I'm creating a new function to read from memory instead ...
4
votes
6answers
394 views
Changing behaviour of double quotes when >> a stringstream
Here is what I'm trying to do:
say I have a stringstream. Then I << "\"hello world\" today";
then when I do
sstr >> myString1 >> myString2;
I would like myString1 to have "hello ...
4
votes
1answer
370 views
stringstream::operator>> only read, and not extract next token from stream
How can I just read the first new "token" (standard non-whitespace character sequence, as beautifully extracted by operator>>) without removing it from the stream? Can I extract the string, check if ...
4
votes
2answers
474 views
How does stringstream work internally?
I'm asking in context of performance. Is stringstream simply a string/vector, so writing to it may result in its whole content being copied to a bigger chunk of memory, or is it done in a more tricky ...
4
votes
3answers
510 views
Setting the precision for stringstream globally
I am using stringstream in my entire project which has more than 30 files. I recently overcomed an issue caused by stringstring where I was parsing the double to stringstream and there was a precision ...
4
votes
4answers
612 views
C++: what benefits do string streams offer?
could any one tell me about some practical examples on using string streams in c++, i.e. inputing and outputing to a string stream using stream insertion and stream extraction operators?
4
votes
3answers
1k views
Should I preallocate std::stringstream?
I use std::stringstream extensively to construct strings and error messages in my application. The stringstreams are usually very short life automatic variables.
Will such usage cause heap ...
4
votes
2answers
1k views
stringstream temporary ostream return problem
I'm creating a logger with the following sections:
// #define LOG(x) // for release mode
#define LOG(x) log(x)
log(const string& str);
log(const ostream& str);
With the idea to do:
...
4
votes
6answers
1k views
How to force std::stringstream operator >> to read an entire string?
How to force std::stringstream operator >> to read an entire string instead of stopping at the first whitespace?
I've got a template class that stores a value read from a text file:
template ...
4
votes
4answers
10k views
How do I convert from stringstream to string in C++?
How do I convert from std::stringstream to std::string in C++?
Do I need to call a method on the string stream?
4
votes
5answers
3k views
redirect std::cout to a custom writer
I want to use this snippet from Mr-Edd's iostreams article to print std::clog somewhere.
#include <iostream>
#include <iomanip>
#include <string>
#include <sstream>
int ...
4
votes
3answers
2k views
what is the difference between stringstream clear and str
I just wanted to know what's the difference between clear() and str("");
For example:
stringstream ss("Stack Overflow");
ss.clear();
ss.str("");
I wanted to know the underlying technical ...
3
votes
3answers
118 views
After writing to a stringstream, why does extracting into a string cause that string to become bogus?
I'm encountering a puzzling bug involving stringstream. I've got a object whose properties I want to dump to a file using dumpState(). This object has a number of member objects, each of which has had ...
3
votes
2answers
370 views
Redirecting stderr to stdout using string stream
I have a code like this
int main()
{
std::stringstream oss;
std::cerr.rdbuf( oss.rdbuf() );
std::cerr << "this goes to cerr";
std::cout << "[" << oss.str() << ...
3
votes
5answers
1k views
Return stringstream from a function
Clearly I am missing something important about stringstreams in general here, but could someone explain why
#include <sstream>
using namespace std;
stringstream foo() {
stringstream ss;
...
3
votes
1answer
742 views
Decimal points with std::stringstream?
I have a bunch of integers that I put into stringstreams. Now I want to change the stringstreams into strings while keeping a constant precision with the strings. How would I do that? I know I can use ...
3
votes
4answers
220 views
Can I tell if a std::string represents a number using stringstream?
Apparently this is suposed to work in showing if a string is numerical, for example "12.5" == yes, "abc" == no. However I get a no reguardless of the input.
std::stringstream ss("2");
double d; ss ...
3
votes
1answer
671 views
std::stringstream as parameter to a function
I have a std::vector<std::string> temp_results and I wish to use std::for_each to go through this vector and concatenate a string, so I concocted the following construction:
std::stringstream ...
3
votes
4answers
8k views
Good tutorial for stringstream manipulation in C++
I'm looking for a good tutorial on how to do string manipulation with stringstream in C++. Currently, I'm doing the following:
double d = 7.234;
stringstream out;
out.width(8);
out.precision(6);
out ...
3
votes
2answers
4k views
Writing stringstream contents into ofstream
I'm currently using a std::ofstream a function and a std::stringstream
std::ofstream outFile;
outFile.open(output_file);
Then I call a function
GetHolesResults(..., std::ofstream &outFile){
...
2
votes
1answer
84 views
Which is more efficient/neat: clearing an existing stringstream or creating a new one?
Simple question just out of curiosity.
Multiple methods on a class need to use a stringstream, or specifically an ostringstream.
1) Have a stringstream variable as a class member and then just ...
2
votes
2answers
69 views
Very specific parsing in C++
Basically, I'm trying to read in the words from a file and, without punctuation, read each word into a multimap which is then inserted into a vector with each pair being a word and the line of the ...
2
votes
3answers
157 views
How to partially read from a TStringStream, free the read data from the stream and keep the rest (the unread data)?
What I want to do: lets suppose I have a TStringStream that just read a string with 100 characters. If I call .ReadString(50), I will get the first 50 characters of this stream and its cursor is going ...
2
votes
3answers
111 views
How do I use write with stringstream?
I have a vector<char> of data which I want to write into std::stringstream.
I tried:
my_ss.write(vector.data(), vector.size());
...but it seems to put nothing into my_ss which I declared as ...
2
votes
3answers
120 views
C++ cin vs. C sscanf
So i wrote this in C, so sscanf scans in s but then discards it, then scans in d and stores it. So if the input is "Hello 007", Hello is scanned but discarded and 007 is stored in d.
static void ...
2
votes
1answer
70 views
How can I improve formatting number with commas performance?
I'm using the following method to format a number with commas:
template<class T>
static std::string FormatNumberWithCommas(T value, int numberOfDecimalPlaces = 0)
{
std::stringstream ss;
...
2
votes
1answer
64 views
float << operation by setting the precision for both integer part and float part
I would like to print floating point numbers in a format like this.
01234.56
I use the following function to round a float to n digits.
double round(double val, int precision)
{
...
2
votes
3answers
149 views
Printing Stringstream Outputs Pointer
Rather than outputting the expected string of "Bar", the following code outputs what looks to be a pointer.
#include <sstream>
#include <iostream>
int main()
{
std::stringstream ...
2
votes
1answer
109 views
Avoid grabbing nothing from string stream
I'm working on an assembler for a very basic ISA. Currently I'm implementing parser function and I'm using a string stream to grab words from lines. Here's an example of the assembly code:
; This ...
2
votes
2answers
414 views
How can I download a Unicode file and load it in a TTreeView?
I need to download a file of TreeView in Unicode using idHTTP (String := idHTTP.Get). After downloading, I need do something with the string and then put it in a TTreeView. I'm using Delphi 2010.
...
2
votes
2answers
152 views
use a string or stream?
I need to progressively build a string and am trying to find the best way to do it. The maximum it can grow to is about 10k and hence was planning to do something like this:
const unsigned long long ...
2
votes
2answers
2k views
Incomplete type is not allowed
Why does this line give the error Error: incomplete type is not allowed?
stringstream ss;
2
votes
2answers
107 views
Having stringstream with some data how to gzip it cross platform way?
So we have some stringstream with somedata. With help of which cross platform library we can turn its contents into gziped format (you would save it into file with extention .tar.gz)
Lets get into ...