↧
Answer by eesiraed for How do I deal with a carriage return line feed when...
You should use getline() to get a whole line first. It should handle carriage returns for you. Then, put the result into a stringstream and use getline() on it to separate the line at the commas.My...
View ArticleHow do I deal with a carriage return line feed when trying to read in file
So I am working on a file that I need to read in which contains both commas separating words and carriage return linefeed at the end of each line and I can't figure out a way to handle it. I am trying...
View Article