Tagged Questions
The getline tag has no wiki summary.
11
votes
1answer
2k views
C++ using getline() prints: pointer being freed was not allocated in XCode
I'm trying to use std:getline() but getting a strange runtime error:
malloc: * error for object 0x10000a720: pointer being freed was not allocated
* set a breakpoint in malloc_error_break to ...
11
votes
4answers
4k views
std::getline() returns
I have a loop that reads each line in a file using getline().
istream is;
string line;
while (!getline(is, line).eof())
{
}
I noticed that calling getline() like this also seems to work:
while ...
10
votes
1answer
121 views
What am I not understanding about getline+strings?
This is my first time using stackoverflow. I've been unable to find out the information I need regarding getline. I'm in a simple programming class for engineering transfers so the code that we write ...
8
votes
5answers
410 views
Why are there two different getline() functions (if indeed there are)?
Every time I do a quick snippet of C++ code line
std::string s;
cin >> s;
I curse myself because I forgot it stops at the whitespace rather than getting an entire line.
Then, on remembering ...
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;
...
6
votes
5answers
298 views
very fast text file processing (C++)
i wrote an application which processes data on the GPU. Code works well, but i have the problem that the reading part of the input file (~3GB, text) is the bottleneck of my application. (The read from ...
5
votes
2answers
236 views
Reading a mix of integers and characters from a file in C++
I have some trouble with reading of a file in C++. I am able to read only integers or only alphabets. But I am not able to read both for example, 10af, ff5a. My procedure is as follows:
int main(int ...
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
205 views
Can an ANSI C-compliant implementation include additional functions in its standard library?
Is an ANSI C-compliant implementation allowed to include additional types and functions in its standard library, beyond those enumerated by the standard? (An ideal answer would reference the relevant ...
4
votes
4answers
325 views
cin.getline( ) with larger size
#include<iostream>
using namespace std;
int main()
{
char test[10];
char cont[10];
cin.getline(test,10);
cin.getline(cont,10);
cout<<test<<" is not ...
4
votes
2answers
206 views
C++ rookie (streams)… How to read strings from file where the string has a space (e.g., Tom Smith)? Trouble using getline instead of >>
I wrote a template function for reading in string or numerical data from files and saving the data in vectors of either strings or ints/doubles. I then use the data to perform calculations with ...
4
votes
3answers
188 views
Why does std::cin.getline not have an oveloaded method to take std::string?
I'm curious about the technical reason for cin.getline and the global getline function being in different places.
What was the motivation for not simply defining all these function signatures for ...
4
votes
3answers
2k views
Python equivalent of C++ getline()
In C++ we can enter multiple lines by giving our own choice of delimiting character in the getline() function.. however I am not able to do the same in Python!! it has only raw_input() and ...
3
votes
3answers
146 views
getline not working properly ? What could be the reasons? [closed]
Possible Duplicate:
getline not asking for input?
There is some unique thing happening in my program.
Here are some set of commands :
cout << "Enter the full name of student: "; // ...
3
votes
1answer
668 views
C++ getline or cin not accepting a string with spaces, I've searched Google and I'm still stumped!
First of all, thanks to everyone who helps me, it is much appreciated!
I am trying to store a string with spaces and special characters intact into MessageToAdd.
I am using getline ...
3
votes
3answers
909 views
gawk / awk: piping date to getline *sometimes* won't work
I'm attempting to convert dates from one format to another:
From e.g. "October 29, 2005" to 2005-10-29.
I have a list of 625 dates. I use Awk.
The conversion works -- most of the time.
Hovewer, ...
3
votes
6answers
818 views
Need help with getline()
Is there a reason why if in my program I am asking the user for input, and I do:
int number;
string str;
int accountNumber;
cout << "Enter number:";
cin >> number;
cout << "Enter ...
2
votes
2answers
51 views
can awk replace fields based on separate specification file?
I have an input file like this:
SomeSection.Foo
OtherSection.Foo
OtherSection.Goo
...and there is another file describing which object(s) belong to each section:
[SomeSection]
Blah
Foo
...
2
votes
2answers
90 views
C++ - Does getline have a maximum string or character capacity?
My question is in reference to an assignment that I am working on. It seems like there are multiple ways to approach the assignment.
The program I am writing will be a filter for text files. The ...
2
votes
2answers
69 views
cin.getline ignoring first word?
I'm having a problem with cin.getline();. cin.getline is ignoring the first word
cout << endl << "Insert the reason: " << endl <<"> ";
cin >> Reason;
...
2
votes
2answers
123 views
getline in if statement
From what I've read getline used in a boolean context returns an implicitly conversion to void*. I haven't found anywhere on the web any real reference to this statement. Everywhere it says that ...
2
votes
4answers
130 views
How can I use map with a string got from getLine?[Haskell]
I want to read a String and toUpper all the characters.
import Data.Char
main = do
a <- getLine
b <- getLine
map toUpper a
if (a == b)
then print 0
else if (a ...
2
votes
2answers
96 views
two consecutive newline characters as a delimiter - C/C++
I'm writing a getline function below but I want the delimiting character to be two consecutive newline characters such the function stops reading once it reaches a blank line.
in.getline(temp, 127, ...
2
votes
5answers
203 views
Control keys (left arrow) are sent to stdin (^[[D) instead of being interpreted
When reading user input using getline(cin, mystrvar), some control keys don't work.
Example:
User input: abc^[[Dd
Text: abd
User input: asc
Read bytes: 7
#0: 97
#1: 98
#2: 99
#3: 27
#4: 91
#5: 68
...
2
votes
2answers
167 views
std::getline on std::cin
Is there any good reason why:
std::string input;
std::getline(std::cin, input);
the getline call won't wait for user input? Is the state of cin messed up somehow?
2
votes
1answer
200 views
What is Scala for: getline(), std::cin.eof(), std::cin.bad()?
Here is a fragment of C++ code:
int AskBase::ask_user(){
for (int tries_left = MAX_TRIES; tries_left;){
std::cout << prompt.c_str();
std::string response;
...
2
votes
4answers
237 views
mmap slower than getline?
I face the challenge of reading/writing files (in Gigs) line by line.
Reading many forum entries and sites (including a bunch of SO's), mmap was suggested as the fastest option to read/write files. ...
2
votes
3answers
94 views
How to have the 'string line' in the same scope as the 'getline(in,line)' in a 'while(getline(…))' loop?
Example:
std::ifstream in("some_file.txt");
std::string line; // must be outside ?
while(getline(in,line)){
// how to make 'line' only available inside of 'while' ?
}
Do-while loops won't work ...
2
votes
1answer
475 views
c++ - getline with delimiter storing an empty character
I am trying to input a delimited text file with getline but when I debug it it shows me that there is an empty character at the beginning of the variable.
This is only happening with my tID variable ...
2
votes
2answers
128 views
Using getline to extract information and store them in a datatype in c++
Here's a code that I wrote which isn't complete.
string line;
ifstream fp ("foo.txt");
if (fp.fail()){
printf("Error opening file %s\n", "foo.txt");
return EXIT_FAILURE;
}
unsigned int ...
2
votes
5answers
152 views
Accessing to information in a “.txt” file and go to a determinated row
When accessing a text file, I want to read from a specific line. Let's suppose that my file has 1000 rows and I want to read row 330. Each row has a different number of characters and could possibly ...
2
votes
4answers
326 views
Following use of getline, cannot write to file
I'm building a large file I/O library and am currently struggling with the interoperability of getline() and writing to a file. My question below is alot like this one, which unfortunately remains ...
2
votes
3answers
653 views
std::cin.getline( ) vs. std::cin
When should std::cin.getline() be used? What does it differ from std::cin?
Thanks.
2
votes
3answers
297 views
How do I stop program from skipping over getline?
This is my main program,
int main () {
string command;
cin>>command;
if(command == "keyword")
{
string str, str2, str3, str4;
cout << "Enter first ...
2
votes
2answers
389 views
C++ std::getline size limit on Mac OSX
I'm having problems with std::getline on Mac OSX Snow Leopard. For some reason it limit the size of the input, while on Debian/Ubuntu it's unlimited size?
std::getline(std::cin, input)
Any clues ...
2
votes
2answers
1k views
cin.getline is skipping one line of input and taking the next
Why does cin.getline start working for the second line on the body input but break on the first?
Example Program run:
Enter name: Will
Enter body: hello world
hello again <= It accepts this one
...
2
votes
3answers
341 views
Unexpected behaviour of getline() with ifstream
To simplify, I'm trying to read the content of a CSV-file using the ifstream class and its getline() member function. Here is this CSV-file:
1,2,3
4,5,6
And the code:
#include <iostream>
...
2
votes
2answers
711 views
is there a way to use cin.getline() without having to define a char array size before hand?
Basically my task is having to sort a bunch of strings of variable length ignoring case. I understand there is a function strcasecmp() that compares cstrings, but doesn't work on strings. Right now ...
1
vote
5answers
123 views
c++ read text file into array
I would like to ask you about data input. I have a text file in the following format:
7 2
X Y
1 0
2 0.048922
3 0.0978829
4 0.146908
5 0.196019
6 0.245239
7 0.294584
The ...
1
vote
2answers
82 views
Keep Leading zeros C
I am trying to read the memory addresses from /proc//maps and I use the following code
for (ptr = NULL; getline(&ptr, &n, file) > 0;) {
if (ptr[0]== ' ') { continue; }
...
1
vote
2answers
112 views
C getline function not reading lines as specified
I need getline() to read the request header sent by my browser to the webserver I'm programming. This is the getMessage function which is supposed to do that task:
char *getMessage(int fd) {
FILE ...
1
vote
2answers
110 views
Why is cin.getline() doing this?
I have a function that builds a question from a file if it comes across a tag. After the question is built and displayed I get input from the user.
void askQuestions(char *text)
{
// check to see ...
1
vote
2answers
127 views
std::getline input not working properly in C++ [closed]
Possible Duplicate:
Need help with getline()
getline not asking for input?
I am working on the following code:
int main()
{
int num;
string str;
cin>>num;
int ...
1
vote
1answer
82 views
Use getline() without setting failbit
Is it possible use getline() to read a valid file without setting failbit? I would like to use failbit so that an exception is generated if the input file is not readable.
The following code always ...
1
vote
1answer
66 views
How do I make .getline get answers for every time through
I am a junior programmer, probably bad code which you computer experts can figure out. I have made this memorizing a paragraph program for my own use, can you figure out a way so that the getline ...
1
vote
3answers
129 views
Why istream::getline() returns so many times (with nothing)
I am trying to read a poorly formatted text file, and maybe I'm going about this the wrong way, but based on the getline documentation it sounded like it would pull values until the values weren't a ...
1
vote
3answers
189 views
getline not asking for input?
This is probably a very simple problem but forgive me as I am new.
Here is my code:
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main ()
{
...
1
vote
4answers
198 views
c++ getline cin issue
while (true)
{
int read = recvData(clientSocket, buf, sizeof(buf));
if(read == SOCKET_ERROR)
{
cout<<"Connection with the server is lost. Do you want to exit?" << ...
1
vote
1answer
164 views
Problem with getline and threads
I have client that works on 2 threads. One is sending data and second one is receiving data. In sending data I have std::getline(std::cin,string). Now in this thread I have infinite loop which ends if ...
1
vote
3answers
97 views
My ifstream doesn't seem to be working
This is a main file that I am using to test methods before I implement them. I am trying to get the list of all files in a directory, write them to a txt file (It works fine until here), then read ...