stringstream provides an interface to manipulate strings as if they were input/output streams.

learn more… | top users | synonyms

2
votes
3answers
53 views

How to write 0x00 into file

I'm writing some application which will communicate (write only) with my custom USB-serial device. It is Cocoa (OS X) application and part which is related to this writing is coded in POSIX style. I ...
0
votes
1answer
25 views

stringstream odd behavior after string with one word [duplicate]

I have this code for example: #include <iostream> #include <sstream> using namespace std; int main(){ stringstream ss; string buffer,first_word; int i; for(i = 0; i < ...
3
votes
2answers
71 views

Ofstream returning garbage. Cout works… Why doesn't ofstream?

So I'm trying to design a program that inputs a file and then reads through the lines and takes each line and outputs info about it to a new file. I have it all down... except! All my .txt files are ...
1
vote
2answers
81 views

Why stringstream::str() truncates string?

I have stringstream object. It is filled through stringstream ss; boost::iostreams::copy(inp,ss); from boost::iostreams::filtering_streambuf<boost::iostreams::input> inp; and actually ...
0
votes
1answer
37 views

For each line of an ifstream, ofstream to a file. Garbage saved in them?

I'm trying to open an ifstream and then use the information in the input file, manipulate it and save the results to new .txt file for each line. I'm getting the right thing when I cout it, but ...
3
votes
4answers
55 views

How to peek at the remaining stringstream characters after using getline?

std::string s; std::stringstream ss; ss << "a=b+c" << std::endl << "d=e+f"; std::getline(ss, s, '='); // gives me "a" std::getline(ss, s); /* gives me "b+c" <- just ...
1
vote
1answer
40 views

Stringstream error: cannot access private member declared in class 'std::basic_ios<_Elem,_Traits>'

In creating a simple exception class extension (where I can construct error messages more easily), I've isolated an error down to the following simple code: #include <sstream> #include ...
4
votes
2answers
159 views

Why can I not use the “<<” operator in a return statement?

For instance: std::stringstream formatMemUsage(...) { std::stringstream ss ... ... return ss << "MB"; // Error here } results in the the error no suitable user-defined ...
0
votes
2answers
60 views

Random characters in stringstream

I'm writing a program that searches for files. This block of code writes a folder name to a stringstream, preceding it with a "./" so that it can be used to change the directory. It then changes the ...
6
votes
1answer
101 views

Why do I have to clear std::stringstream here?

I wrote a short testprogram to see if I can append to a string using stringstream repeatedly. In the first version I got Output1 and I don't really understand why s1 stays empty. I found out that I ...
0
votes
2answers
43 views

infile.open refuses to read the variable in the file

So, I have this loop: int counter1 = 0; ifstream incard; string card; string cardname; stringstream out; while (counter1 < 4) { counter1 = counter1 + 1; out << counter1; ...
1
vote
1answer
50 views

c++ getline and stringstream

I'm trying to read in a file, which has 5 lines, and every line is 3-4 string long. Here's my input file: 10:30 Hurley 1234567A 10:15 10:45 Hurley 1234567A 11:30 08:35 Jacob 1x1x1x1x1x 08:35 Jacob ...
0
votes
2answers
58 views

getline delimiter using stringstream

It seems that it's not separating the word within the space. Trying to separate the words in between, and stored it in first and second. cin >> name; //input name stringstream file (name); ...
0
votes
0answers
66 views

Assign stringstream to a string [closed]

However hard i tried to do this, it failed, so did my confidence :( over this piece of code: class session { public: //... /// Asynchronously write a data structure to the socket. ...
0
votes
1answer
107 views

Exception Delphi TClientDataSet, TStringStream and TWideStringField

When i try to load a Stream to a ClientDataSet i get the following exception: Mismatch in datapacket The ClientDataSet has several WideStringfields, so i tried it with an Encoding in ...
0
votes
3answers
61 views

Problems using strtok() and stringstream

I've been fiddling with this for a while now, and all it returns is first two numbers in the 'save.rp' file on separate lines, int characterPosition [2] = {0,0}; string convToStr(char *ch) { ...
1
vote
0answers
59 views

boost::iostreams<stream_buffer> with tokenizer without unnecessary copying

I'm trying to create a string I can tokenise, from a file. What works is boost::iostreams::stream_buffer<boost::iostreams::mapped_file_source> file("file.txt"); ...
2
votes
1answer
53 views

Copy contructor error with no obvious copy

I'm attempting to build a bit of simple logging functionality from scratch, with a stream like '<<' interface, and am running into a bit of compiler issue. Here is the basics of my code: ...
2
votes
2answers
109 views

passing a stringstream to istream using operator >>

I am trying to pass a stringstream into an object(class) that has an overloaded extraction operator >> that is declared and defined. For example, the declaration for the overloaded extraction ...
0
votes
1answer
24 views

Make fprintf to write to std::stringstream

Function fprintf writes to FILE*. I have a debugPrint function which writes to stringstream. I don't want to change my function for it is used at many places and it would break the code. How can I ...
0
votes
1answer
48 views

User inputs stringstream, then need convert to string to pass in function parameters

I am trying to ask the user for a stringstream, then convert it to a string so I can pass it in a functions parameters. How can I do this ? : string Nm; stringstream ss; cout << " Please enter ...
2
votes
3answers
62 views

Getting the remainder of a stringstream c++

I have a stringstream where I need to get the first part out and then get the remainder into a separate string. For example I have the string "This is a car" and I need to end up with 2 strings: a = ...
0
votes
1answer
41 views

Can you copy the content of a method intro a StringStream?

For Example: void Display() { cout << "Hello World" << endl; } stringstream ss; How can i make the display method input into the ss stringstream?
0
votes
0answers
29 views

Debug Assertion Fail on Multiple Use of method

I'm writing a program that reads part of a file that contains a list of integers for example: 1 : 8367 2 : 6524 3 : 43736 4 : 223 5 : 13 I'm taking the part of file, and splitting into 2 other ...
1
vote
1answer
59 views

XCODE: Linking issue when using string streams <sstream>

I don't understand why XCode is running into a linking issue when using string create_base_uri(string host, int port, string dbname){ std::ostringstream ostr; //output string stream ...
1
vote
2answers
67 views

C++ macros and std::ostringstreams

I have a static C++ class Logger with a public method: static std::ostringstream& Log(int sev); as you can see the method evaluates as a ostringstream so I can log my stuff simply typing: ...
0
votes
0answers
56 views

yaml-cpp “Pointer being freed was not allocated” in ~basic_stringstream()

I am trying to use the library yaml-cpp. For some strange reason, constructing a YAML::Exception or any derived class causes a crash with malloc: *** error for object 0x100599860: pointer being ...
3
votes
1answer
74 views

Using stringstream precision to format floats but discarding zero-padding

I'm trying to set precision (i.e. number of decimal places) of floats and long doubles to 10, but i don't want them zero padded. I.e., 123456.789123456789 should give 123456.7891234568, but 123456 ...
-4
votes
1answer
42 views

std::stringstream like a private variable in class [closed]

I want to use std::stringstream like a private variable in my class. But i have an error "undeclared identifier". PLease, explain why and get me advice how can i do this. class Test { private: ...
0
votes
3answers
60 views

How to let std::istringstream treat a given character as white space?

Using std::istringstream it is easy to read words separated by white space. But to parse the following line, I need the character / to be treated like white space. f 104/387/104 495/574/495 ...
0
votes
1answer
53 views

How can I substitute a binary stream for a string stream, to avoid casting?

I'm currently investigating a few methods to transfer a complex CGAL object instance to a different process. In another post, I've asked about custom allocators, but another method is string streams. ...
0
votes
2answers
158 views

C++ stringstream to char* conversion memory allocation

Can anyone explain how the following code is working and does not crash the application? int main() { char *tempStr = new char[5]; tempStr[0] = '\0'; string stemp = "helloworld"; ...
1
vote
1answer
50 views

QString and stdstring combination doesnt work in std::stringstream - compile error

``` #include <iostream> #include <sstream> #include <QString> class Printer { public: inline std::ostream& operator<<(const std::string& str) { stream << ...
0
votes
1answer
65 views

C++ getline() jumped over empty strings

I'm reading with my c++ program csv file: abc;def;ghi 10;;10 by this code: while(getline(in, str, '\n')){ stringstream ss; while(getline(ss, str, ';')){ line.add(str); ...
1
vote
4answers
123 views

How to print all possible unique bit masks of unsigned long long?

Having an unsigned long long how to print it in form of its hex mask into std::string? I tried to iterate over binary (values like 0001, 0010, 0100) mask: std::stringstream str; std::string result; ...
-1
votes
2answers
84 views

The easiest way to compare string containing integer to string containing hex

I have two strings one with integer (eg string strInt = "100") and one with hex number (eg string strHex = "0x64"). Whats the quickest/nice/safe way to compare if the values of strInt and strHex are ...
2
votes
2answers
76 views

How can I get std::stringsteam to line up decimal places on floating point numbers?

In C++, I have some code like this: float hits = 10.12; float mins = 2.19; std::ostringstream ss; ss.precision(2); ss << std::fixed << hits << "%\n" << std::fixed ...
0
votes
2answers
83 views

istringstream not to tokenize a text between quotes

I'm using istringstream to break the tokens of a string. Let's say I have a string like this: print "this is a test" It breaks it into 5 tokens: print | "this | is | a | test" where it ...
1
vote
3answers
122 views

How to construct a std::string from a std::vector<string>?

I'd like to build a std::string from a std::vector<std::string>. I could use std::stringsteam, but imagine there is a shorter way: std::string string_from_vector(const ...
0
votes
2answers
186 views

Problems reading std::string from std::stringstream in C++/CLI code

I have a piece of code to read the build date and month like so. Here __DATE__ is as defined in Predefined Macros const char* BUILD_DATE = __DATE__; std::stringstream ss(BUILD_DATE); std::string ...
1
vote
1answer
94 views

Why does stringstream yields strange values?

So, I'm trying to use a stringstream in my program, in order to get some formatted string (esp. because I need to convert numbers to string). The thing is, my program crashes, and when I debug it ...
0
votes
2answers
112 views

Stringstream read values into double fails?

New Problem boost::tokenizer<> token(line); tokenizes decimal points! How can I stop this happening? Previous problem below is now resolved. I am trying to grab values from a stringstream ...
0
votes
2answers
195 views

string to double without scientific notation or trailing zeros, efficiently

This routine is called a zillion times to create large csv files full of numbers. Is there a more efficient way to to this? static std::string dbl2str(double d) { std::stringstream ...
0
votes
1answer
34 views

How to get stringstream to treat uint8_t as a number not a character?

I have this code and wondering if it's possible to have stringstream to treat uint8_t as a number not a character? uint8_t s; std::stringstream sstream( "255" ); sstream >> s; std::cout ...
2
votes
3answers
94 views

How to compare two string containing a decimal value?

Here is what I'm doing: if (oss.str() != sValue) I can have for example: 2000000000.000 and 2000000000.0. That's the same value, but not the same string. I need to compare it in string because I'm ...
0
votes
1answer
31 views

How to use any stream on wstring to extract data

I was reading data from a file using wifstream the txt file looks like this: 1,2,3,4,5,6,7 2,3,4,5,6,7,8 ... ... each number is an id I needed for my program and comma is the separator Here is my ...
1
vote
1answer
94 views

Error stringstream to double

I want to try to know if a double value stored in a std::string is going to overflow when stored on a float. Here is a sample of code : #include <iostream> #include <sstream> #include ...
0
votes
1answer
78 views

c++ stringstream convertion error

I am having some trouble with a simple function that tries to convert integers to a string. Here is the code: string Problem::indexB(int i, int j, int k){ stringstream ss; if(i < 10) ...
3
votes
3answers
155 views

Center text in fixed-width field with stream manipulators in C++

I am refactoring some legacy code which is using printf with longs strings (without any actual formatting) to print out plain text table headers which looks notionally like this: | Table | Column ...
1
vote
1answer
97 views

Formatting double to string with ostringstream

I want to convert double to string, rounding to 2 decimal digits after point. I want 1.009 to be presented as "1.01", and 1.0 as "1". This is what I've tried: std::ostringstream oss; oss << ...

1 2 3 4 5 7