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:
- Read one text file (any way possible, doesn't have to be all at once)
- Write to a separate text file (any way possible, can append or write character by character)
- It is assumed each sentence ends with a period.
- The first letter of each sentence must be uppercase.
- Everything besides the first letter of each sentence must be lowercase. (proper nouns too - it's a trivial example)
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:
- Use getline to read in string from line x stopping at a period (.).
- Iterate over strings characters, uppercasing the first letter, and then lowercasing the rest.
- Read in another string continuing after the last period (.) in the text file.
- Repeat until text file read.
- Write to second text file.
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.
std::string
have amax_size()
member returning the maximum size it can grow (I'm pretty surestd::vector
has it). So there is actually a specified artificial limit, though it is usually just(size_t)-1
or something similar and therefore equal to the actual hardware limit you mentioned. But +1 of course. – Truax