Welcome to Dream.In.Code
Getting C++ Help is Easy!

Join 132,218 C++ Programmers for FREE! Get instant access to thousands of C++ experts, tutorials, code snippets, and more! There are 972 people online right now. Registration is fast and FREE... Join Now!




Reading a Line from a text file

 
Reply to this topicStart new topic

Reading a Line from a text file

elendil21
post 15 Mar, 2008 - 12:52 PM
Post #1


New D.I.C Head

*
Joined: 15 Mar, 2008
Posts: 1

string ICYTP;

cout << "Enter where the line is located " << endl;
getline(cin, ICYTP);
ifstream In(ICYTP.c_str());
In >> ICYTP;
In.close();

when i output ICYTP it gives me my original text that i inputted into the console;
However, i want it to equal the line in the text file.
I have been confused for quite some time now and cant figure out my mistake.
Can anyone offer a quick fix for this line of code.?

This post has been edited by elendil21: 15 Mar, 2008 - 12:53 PM
User is offlineProfile CardPM

Go to the top of the page

Glasseater
post 15 Mar, 2008 - 01:56 PM
Post #2


New D.I.C Head

*
Joined: 15 Jun, 2007
Posts: 46


My Contributions


It will work if you put the cout before the In.close, but I would just use a different variable all together for input.

eg.

CODE

string ICYTP;
string input;

cout << "Enter where the line is located " << endl;
getline(cin, ICYTP);
ifstream In(ICYTP.c_str());

In >> input;

In.close();

cout << input << endl;


P.S. Please wrap your program in code tags, it makes things easier for us smile.gif

This post has been edited by Glasseater: 15 Mar, 2008 - 01:57 PM
User is offlineProfile CardPM

Go to the top of the page

Topher84
post 15 Mar, 2008 - 02:43 PM
Post #3


D.I.C Head

Group Icon
Joined: 4 Jun, 2007
Posts: 232



Dream Kudos: 25
My Contributions


getline in c++ uses a character array.. so you would need to do something along the lines of

CODE

char cReadIn[256]
string strReadInBuffer;

while(!inputFile.eof())
{
   getline(cReadIn,256);
   strReadInBuffer = cReadIn;
   cout << strReadInBuffer << endl;
}//end while
User is offlineProfile CardPM

Go to the top of the page

Reply to this topicStart new topic
Time is now: 11/21/08 08:41PM

Live C++ Help!

C++ Tutorials

Reference Sheets

C++ Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month