The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
52 views

converting std::string to int using sstream

I'm trying to convert a string of an arbitrary length to an int but so far it works only for strings of limited length. Code so far: long long convertToInt (std::string x){ long long number; ...
1
vote
1answer
55 views

Won´t read whitespace with ifstream

I am relatively new to C++, so be gentle. I have a text-file I want to read, but when i read the file it skips the whitespace (space) between separated words. I tried to take away as much junk-code ...
0
votes
0answers
18 views

Converting string to float with sstream issue

I'm using streamstring to convert a string to a float like this... I'm grabbing the number from between " by " and " to " which does work fine in my tests. f1 = line.find(" by ") + 4; ...
-4
votes
2answers
82 views

sstream , Char toupper , using uppercase manipulator [closed]

I dont know why my code doeasnt work , what am I doing wrong ? I know that i can do it by toupper function but i need to make it via manipulator so heres my code: #include <string> #include ...
0
votes
1answer
122 views

std::map of thrust::device_vectors for CUDA programming [closed]

I would like to make a std::map of thrust device_vectors, where the map keys are strings. This is because the input file looks as such: AXEKJD 1.2 3.1 6.3 2.5 .... AXEKJE 0.45 9.11 ...
3
votes
2answers
167 views

getline() function in visual studio 2012 working differently, directly skipping to the last line

this is the first time i am using getline() and i think there is something wrong with it! Here is my code: ifstream file ("new2.csv"); string val; while (file.good()) { getline (file,val); } ...
0
votes
2answers
62 views

Stringstream incompletely filled

Why does this code fragment: if (iErr) { std::stringstream ss; string serror("error"); ss << "lua error code " << iErr << ": " << lua_tostring(lua, -1); ss ...
2
votes
2answers
69 views

Wrong behavior with flag ios_base::app

As far as I know the flag app seeks to the end before each write const ios_base::openmode std::ios_base::app [static] Seek to end before each write. the following program output is: ...
2
votes
1answer
430 views

Simple int to string conversion… Int to const char* invalid [closed]

Setting: On Qt Creator, I call this function. I have imported all sstream, string, etc. all of it is in the same class and is defined well in the header file: std::string int2str(int x) { ...
1
vote
6answers
175 views

Tokenize stringstream based on type

I have an input stream containing integers and special meaning characters '#'. It looks as follows: ... 12 18 16 # 22 24 26 15 # 17 # 32 35 33 ... The tokens are separated by space. There's no pattern ...
2
votes
1answer
137 views

How do I use the ostringstream properly in c++?

I am attempting to return some information when my toString() method is called, which include an integer and some floats. I learned about ostringstream works great but when the class that contains ...
0
votes
2answers
147 views

using sstream in mingw 2.95 compiler

Is it possible to use sstream header in mingw 2.95 compiler?.If, it is, then how? I am using C-Free 4.0 and it comes with default mingw2.95 and cygwin compiler
1
vote
3answers
985 views

Extracting lines from .txt file, then store words into separate arrays | C++

Our professor gave us this assignment, where we have a .txt file with the following format: John 23 Mary 56 Kyle 99 Gary 100 ...etc. etc. What we have to do is read the file, and store the names ...
-3
votes
4answers
3k views

Error C2143: syntax error : missing ';' before 'namespace'

I am VERY new to C++ and Open GL and I have been trying to display 3D objects in a scene. it worked fine with one but when I tried to alter my code to add a second, my code regarding the HUD text ...
0
votes
2answers
101 views

what is c++ writing to the socket when an enum gets written

What is getting written to the socket when I write an ENUM reference (below)? I have something captured in whireshark but it does not resemble the ENUM name "JOIN" .. it is not the same length ...
1
vote
2answers
430 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, ...
0
votes
4answers
79 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
701 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
410 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 << ...
1
vote
2answers
172 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() ...
2
votes
2answers
226 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 ...
10
votes
4answers
1k 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 ...
1
vote
5answers
222 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; ...
2
votes
3answers
1k 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 ...
4
votes
3answers
3k 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 ...
5
votes
2answers
3k 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 ...