input whole line from text file?

Started by
0 comments, last by _SKOTTIE_ 20 years, 8 months ago
i know this is a simple, question, but its so simple that i cant find the answer. i want to be able to input an entire line from a text file into a string. i know that ifstream only does until there is a space. lets say the string is "Hello world!": ifstream in_file; in_file.open("foo.txt"); in_file >> string; string would only be "hello" would using something like getline(in_file, string); work to get my "Hello world!" in string?
Because you touch yourself at night!
Advertisement
getline is exactly what you need.
"When you die, if you get a choice between going to regular heaven or pie heaven, choose pie heaven. It might be a trick, but if it's not, mmmmmmm, boy."
How to Ask Questions the Smart Way.

This topic is closed to new replies.

Advertisement