My question is in reference to an assignment that I am working on. It seems like there are multiple ways to approach the assignment.
The program I am writing will be a filter for text files. The purpose of the assignment is to get experience with fstream and getline.
Requirements:
I have a working draft of a program that I have written, but getline has is inconsistent in how it is reading my text file. Basically, it will read one line in as a string, which is what I want. As it reads in the second line; however, the program throws a runtime error halfway through the line and Windows shuts it down.
Does getline have a buffer that fills up and needs to cleaned after each line read?
My pseudo code for the program:
I am implementing getline this way:
getline(fileIN, str1, '.')
str1 is the string that is read from each line.
Am I using getline correctly? Am I thinking this problem through correctly and efficiently?
* I realized as I was finishing this extended question/section that getline may be utilizing more memory for '\r' or '\n' characters at the ends of lines, or for reasons unrelated to memory, getline is not correctly handling (according to my purposes) sentences that wrap to new lines. Does getline not handle sentence/word wrap well?
Also, is there a way to dynamically specify getline to read the first string up to a period (.) or newline ('\n'), which ever comes FIRST?
Thank you for your time and consideration.
Yes, you are using getline
correctly. Make sure to use it as the condition for your while
loop or other conditional:
while(std::getline(fileIN, str1, '.')) {
// process str1
}
and don't make the mistake that so many others have made of trying to use fileIN.good()
or !fileIN.eof()
or whatever (this will only lead to headache and heartache).
The buffer of str1
does not need to be cleaned up by you since it is managed by the string
class. It will expand as needed and deallocate itself when the variable goes out of scope. That is one of the reasons why we love the Standard Library classes and think twice before using raw arrays.
Also, there are no artificial limits placed on the capacity of a string
. The only limiting factor is the available memory of the system, so with virtual memory, it can potentially be a little less than 4GB on a 32 bit system or a little less than 264 bytes on a 64 bit system.
The limit on getline (from the C library) is constrained by resources (i.e. memory), so you should not worry that much (unless you have a file with a single line of a billion bytes).
The STL C++ getline has similar limitations.
So you should probably not care that much, unless you want to make a bullet-proof program (and then you might care about other things, like I/O errors, disk full condition, ...).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With