The istringstream tag has no wiki summary.
12
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 ...
5
votes
1answer
79 views
“Off by one error” while using istringstream in C++
I get an off by one error while executing the following code
#include <iostream>
#include <sstream>
#include <string>
using namespace std;
int main (int argc, char* argv[]){
...
5
votes
4answers
166 views
non-copying istringstream
So istringstream copies the contents of a string when initialised, e.g
string moo("one two three four");
istringstream iss(moo.c_str());
I was wondering if there's a way to make std::istringstream ...
4
votes
2answers
390 views
C++ - repeatedly using istringstream
I have a code for reading files with float numbers on line stored like this: "3.34|2.3409|1.0001|...|1.1|". I would like to read them using istringstream, but it doesn't work as I would expect:
...
3
votes
2answers
41 views
Searching for strings within a string in C++
everyone. I am an experienced C programmer trying to get adjusted to C++. I would like to do the equivalent of this C statement...
sscanf(str, "%s %s", sub1, sub2);
...but with C++'s string object. ...
2
votes
1answer
133 views
Extracting bool from istream in a templated function
I'm converting my fields class read functions into one template function. I have field classes for int, unsigned int, long, and unsigned long. These all use the same method for extracting a value ...
1
vote
1answer
78 views
cannot extract a double from a case insensitive string?
I am trying to come up with a case insensitive string, and I found the following on the web
http://www.gotw.ca/gotw/029.htm
So basically my code to come up with a case insensitive string is as ...
1
vote
3answers
143 views
How to get two integers separated by space in a char[]?
I will be getting a string of numbers that looks like this.
12 45
Two integers separated with space.
The output will be 57.
I have tried using,
string numbersstream;
cin >> numbersstream;
...
0
votes
1answer
32 views
Can I treat an isstrstream to obtain random seeks into an underlying i/o buffer?
I have code which will read an entire file into a buffer. For my purposes, I can guarantee that such a file is not over, say, 10MB in size... small enough that we need never concern ourselves with ...
0
votes
2answers
69 views
Emulating sscanf's %*s with istreamstream [closed]
Possible Duplicate:
C++ alternative to sscanf()
I have the following line of code
sscanf(s, "%*s%d", &d);
How would I do this using istringstream?
I tried this:
istringstream ...
0
votes
1answer
85 views
sscanf to stringstream conversion
if (1 != sscanf(line, "%s", name)) continue;
Earlier in the code we have
char line[128];
char name[128];
What's another way of writing this line using istringstream instead of sscanf?
0
votes
3answers
331 views
C++ istringstream in loop not changing its value
I'm fairly new to c++ and have encountered a problem where by searching alone I couldn't find a solution.
The problem is, why does the istringstream never changes its value inside the loop below?
...
0
votes
1answer
403 views
Splitting a string into integers using istringstream in C++
I'm trying to use istringstream to split a simple string into a series of integers:
#include <string>
#include <iostream>
#include <sstream>
#include <vector>
using namespace ...
0
votes
1answer
136 views
C++: follow-up question on reading from an external file using getline(). How to get a subset of the file data?
I need to read in numbers from an external file and store them in a vector of ints. I can do this now thanks to Howard Hinnant and wilhelmtell, who patiently helped figure out why my coding was not ...
0
votes
1answer
247 views
C++ problem with string stream istringstream
I am reading a file in the following format
1001 16000 300 12.50
2002 24000 360 10.50
3003 30000 300 9.50
where the items are: loan id, principal, months, interest ...