ifstream duplicate char?

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
ajtgarber
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 97
Joined: Wed Jun 10, 2009 8:56 am

ifstream duplicate char?

Post by ajtgarber »

I have a program that reads in a file character by character, and for some reason the last character is always duplicated. I'm thinking that maybe I'm messing up my loop or something.

The file (testfile.txt):

Code: Select all

test test test
The code reading the file:

Code: Select all

if(file.is_open()) {
            string str;
            while(!file.eof()) {
                 char c;
                 file.get(c);
                 cout << c;
                 
                 if(c != ' ' && c != '\n' && c != '\r')
                      str += c;   
                 else {
                     Token token(str);
                     tokens.push_back(token);
                     str = ""; 
                 }          
            }
            if(str.size() > 0) {
                Token token(str);
                tokens.push_back(token);              
            } 
}
the output always ends up being:
test test testt
wearymemory
Chaos Rift Junior
Chaos Rift Junior
Posts: 209
Joined: Thu Feb 12, 2009 8:46 pm

Re: ifstream duplicate char?

Post by wearymemory »

You've misunderstood what eof does. Look here for the correct way to use get in a loop.
Post Reply