The getline tag has no wiki summary.
-4
votes
1answer
36 views
Getline Not Working With Spaces [closed]
when i try to read a full name with cin.getline() the string is cuted after the first space if i write Ray William it just takes " William" withi the space, any idea?
string var;
cout ...
0
votes
1answer
66 views
cin.getline () is not working when called the second time [duplicate]
In this code ,getline is not working for i =1 .but for i = 0 it is working completely fine.
What I should do to repeatedly work with the getline function.This code takes a number and checks its ...
0
votes
2answers
30 views
How to get a set of words with spaces as one input in C?
In a program I created I need to get some customer information to an array. Below are the codes regarding my question.
struct CustomerType
{
string fName;
string lName;
char gender;
...
1
vote
1answer
58 views
Issues with getline() and vectors (C++)
I'm trying to get input from a text file and place the data into four vectors using getline(). The file contains two strings, a double, and an integer, all on different lines, with each group of ...
0
votes
1answer
44 views
Compilation is stuck on get()/getline() function
Here is my code. I'm trying to compare two *txt files...
But then, when I try to compile this code, it becomes stuck on first get() function.
I tried to change the numbers of characters stored in char ...
0
votes
2answers
28 views
Getline() Not keeping Application Open?
I'm a first semester C++ student and in class we are building a BMI calculator (Win32 Console Application). I've gotten everything to work just fine, except for one of the instructions, which is wait ...
3
votes
4answers
59 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
votes
1answer
50 views
Reading from a mixed data C++ file
I have a file where the lines look like this:
File root://eoscms//eos/cms/store/group/alca_ecalcalib/EFlow/AlCaPhiSym_Run2012C_B0T/B0TV5/variablesTree_100_1_JLs.root - Run: 200786 - Events: 683159
...
0
votes
0answers
53 views
C++ reading values into an array on XCode
I can't figure out why the following code doesn't output properly. It's supposed to read a name and grades into an an entry of an array of students. For some reason, there are phantom entries in ...
-1
votes
2answers
43 views
“No instance of overloaded function 'getline'..” [closed]
part of the code:
string name;
cin >> name;
ifstream userFile( name + ".txt");
if (userFile.good()){
// read away
cout << "Password? \n";
string pw;
...
0
votes
0answers
30 views
Seg fault with getline function() Multi 5 compiler
Iam using Multi 5 compiler and getting error tried to access restricted memory with getline function. Please suggest what could be the issue.
anyfunction (std::string filePath)
{
std:string ...
0
votes
0answers
33 views
using getline to gather multiple variable types from a file
Here is the Input file I'm trying to read the information from:
The Firm
Dell
512
Fundamentals of Computer Graphics
A K Peters, Ltd.
662
The C++ Programming Language
Addison-Wesley ...
2
votes
4answers
121 views
c++ Read from .csv file
I have this code which is supposed to cout in console the information from the .csv file;
while(file.good())
{
getline(file, ID, ',');
cout << "ID: " << ID << " " ;
...
2
votes
2answers
54 views
What am I doing wrong with cin.getline()?
I am relatively new and inexperienced when it comes to programming, so I apologize if my code make anyone's eyes bleed.
Question #1:
My code wasn't working when I tried using cin.getline() and I keep ...
0
votes
1answer
56 views
Console output keeps crashing
Trying to solve this Problem.
I have written the code which looks like this:
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int i,j,n,t;
int main()
...
1
vote
1answer
55 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
1answer
35 views
std::getline() is not ending/capturing
This does not work.
playing = true;
while (playing) {
std::string command;
std::cin.ignore(1);
std::getline(std::cin, command);
execute(command);
std::cout << "asdasd";
}
...
0
votes
3answers
88 views
read in txt file in C++
I have a .txt parameter file like this:
#Stage
filename = "a.txt";
...
#Stage
filename = "b.txt";
...
Basically I want to read one stage each time I access the parameter file.
I planed to use ...
0
votes
1answer
40 views
getline issues with cin.ignore
I'm having issues with the getline function. I apologize in advance if my code is not detailed to the stackoverflow syntax. What I am experiencing is when I run the addMember(), it prompts the user to ...
1
vote
2answers
67 views
Getline issue with input of open file stream
I'm trying to figure out why this is broke now, because I had it working and I'm not sure what is wrong. I'm trying a simple getline from a file that's been opened, however, the compiler keeps giving ...
0
votes
1answer
61 views
Read lines from istringstream ,without '\r' char at the end
I have a following function :
void process (std::string str)
{
std::istringstream istream(str);
std::string line;
std::string specialStr("; -------- Special --------------------\r"); // ...
0
votes
0answers
48 views
getline() not waiting for user input
I have a code that is supposed to use user input to take an order of a pizza.
#include<iostream>
#include<string>
using namespace std;
int main()
{
double totalCosts = 0;
// PIZZA
cout ...
0
votes
0answers
29 views
Enum ifstream and getline()
I've got the problem with following code. It should get the object parameters from the txt file. Of course to get enum values correctly I've made this simple getline() function. I'm keep getting ...
0
votes
2answers
61 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
2answers
45 views
Reading Lines from File and Storing in Separate String Variables
I am creating a bank terminal for an assignment. It has the ability to add clients with each client containing 5 different variables for name, address, social#, employer, and income. Those variables ...
0
votes
3answers
48 views
Assigning file data to array of structs
I'm currently attempting to assign a line of data from an input file to an array of structs.
Here is my struct:
struct student
{
int ID;
int hours;
float GPA;
};
...
2
votes
1answer
103 views
getline skipping first input character c++
So I have been making this program for a while now. I have looked all over the internet and none of the solutions I have found work. Every time I put in my input in the arr[i].question and ...
3
votes
1answer
64 views
Access violation with getline in thread + boost::function
I was going to write a class which reads std::cin in a thread and calls a callback when something was entered. The callback is a boost::function. The code runs if I only have the std::getline ...
0
votes
1answer
48 views
Merging Two Sorted Files with fstream
I am trying to take two sorted files with 5000 integers each and combine them into one file of 10000 sorted ints. I have it working except when the program finishes one of the files, printing out the ...
0
votes
1answer
29 views
Escaping from loop for line in file but still get the rest of the file as string
The following code gets each line from a txt file. If the line is "References\n" the file should continue to getlines, but appended to another string removing the subsequent '\n' instances. How ...
0
votes
0answers
57 views
getline() doesn't end long input
I need to input in my program a big string until the user types a delim char and I've written this code:
int main(int argc, const char * argv[]) {
string str, temp;
string c;
cout ...
0
votes
2answers
69 views
Every other line of data is skipped when reading and storing data from a file
I'm new to C++ and I'm having a little trouble when it comes to reading lines of data from a text file. Let's say I have an unknown number of lines in a text file, with each line in the same format: ...
0
votes
3answers
78 views
How to prevent “\n” being written at the end of file
I am writing a program to read/write from a text file which contain employee information.
Each employee information is stored inside a textfile like below.
Employee information is stored to four ...
1
vote
1answer
108 views
Unable to read a text file in c++
Hi my college class was given a group assignment to read a multi-line text file, drop the lowest score, then average the score from the remaining numbers. I've run into a problem when prompted for ...
0
votes
3answers
43 views
Beginner Error with “getline”
this is my first time posting a question so I hope I'm getting this right. Anyways, I'm trying to create a program to ask the user for a string, count the types and numbers of letters, then output the ...
1
vote
1answer
64 views
Issue with C++ using getline and vector
I have an issue where I am reading a line from a file using getline and the using a stringstream to separate the different variables using a comma as a delimiter. The issue is that a standard cout of ...
-1
votes
1answer
53 views
Need to start string from a specific spot in C++
Here's my code:
#include <iostream>
#include <fstream>
#include <cstring>
#include <string>
#include <iterator>
#include <algorithm>
#include <string>
using ...
0
votes
4answers
108 views
Trouble reading file using getline (noob)
I'm a noob C++ student. I'm having trouble reading a file into a array structure. This is a class assignment so I do not need any one to do the code for me, I just want to know what I'm doing wrong. ...
1
vote
1answer
37 views
Linecache adding an extra line to the line that i get
When i try to get a line using linecache in python.
loginpass = raw_input("> ")
if loginpass == linecache.getline('Password.txt', 1):
The line that it gets always returns with an extra line.
So ...
0
votes
2answers
238 views
C++ - while(getline) doesn't get the first line of file
I've been working on a C++ program where I read a files contents and copy then onto another file but it always seem to skip the first line. I've seen others having trouble with this and they used ...
0
votes
3answers
114 views
C++ - Read in file lines separated by a comma
I tried looking up what I'm trying to do but I cant find specifically what I'm trying to do. I have a text file with multiple lines that look like this:
12345,12345,12.34,12345,12345
It's the same ...
0
votes
1answer
39 views
Finding a match to a string with getline
I am trying to search a vector of string names for matches. Names can be more than one word so in prompting the user I am using getline(std::cin, name); however I can never find matches with the ...
1
vote
1answer
55 views
Why seekg does not work with getline?
Seekg does not seem to work, when I reach EOF in myFile.
ifstream myFile("/path/file");
for(int i; i < 10; i++){
myFile.seekg(0);//reset position in myFile
while(getline(myFile, line)){
...
3
votes
1answer
70 views
why does std::getline fails after using operator>> twice?
I have the given input:
local
127.0.0.1 localhost
other
next
Using the following code the output is a blank where I expected other. The output is "output: "
#include <iostream>
using ...
0
votes
3answers
71 views
Issue reading space from file
I am trying to read a line from a file that has spaces in it. Despite everything I've tried and all my research, nothing seems to work, here is my current attemp
void read_name(fstream& in_file, ...
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
3answers
154 views
ifstream getline issue (it only reads the first line)
SOLVED
Thanks to Whozcraig
I used transform and iterator
-9
votes
1answer
90 views
Why does my program only read the first line? [closed]
I've going at this for a while and it's killing me.
I got it to read, and execute, and finally write the output. BUT it refuses to read anything but the first line.
Please help
and I know it's an ...
0
votes
2answers
76 views
std::getline is returning multiples of the same line
I'm parsing a .txt file in order to make a Exp Calculator and I'm getting a wierd error where it will double up any line that has more then one line from the stream. I'm using this code to open and ...
0
votes
0answers
48 views
std::getline returning the wrong size
something wrong with getline(), taking the words in correct but still the value of size remains 26.
I tried printing each time it takes in a character and all of them do print so itis taking in ...








