Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose I have a text file named descriptions.txt like below..

Option 1

Option 1 description goes here.
Some text goes here. Some More text here.


Option 2

Option 2 description goes here.
Some text goes here. Some More text here. More here.


Option 3

Option 3 description goes here.
Some text goes here. Some More text here.

I need need the above text to go to the string variables Option1 , Option2 and Option3. That is,

cout<<Option1; //should output

    Option 1 description goes here.
    Some text goes here. Some More text here.


cout<<Option2; //should output

    Option 2 description goes here.
    Some text goes here. Some More text here. More here.

and so on..

How can I do this?

share|improve this question
1  
stackoverflow.com/questions/7868936/c-read-file-line-by-line The first of 3831 results for search "[c++] read file line" So, read the file line by line, discard lines that are equal to "Option x" and you're almost there. – jrok Aug 21 '12 at 19:49
2  
Sounds like homework. – Caesar Aug 21 '12 at 19:52
Thanks @jrok. Could you please show how how the code is typed according to my file? Sorry I am new to C++. – DishonM Aug 21 '12 at 20:04

closed as not constructive by Vlad Lazarenko, Fluffeh, JMax, Mark, j0k Aug 22 '12 at 15:13

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Your question is definitely not constructive. There are millions of ways of doing it, and how you do it also depends on the exact file format etc. But generally speaking, you can use getline to read file line by line, and then do whatever the parsing logic you want. As a quick example:

#include <iostream>
#include <fstream>

int main()
{
    std::string   line, option1, option2, option3;
    std::ifstream file("options.txt");
    unsigned int  empty_count;

    while (getline(file, line)) {
        std::string & desc = (line == "Option 1" ? option1 :
                              (line == "Option 2" ? option2 :
                               (line == "Option 3" ? option3 : line)));
        empty_count = 0;
        while (getline(file, line)) {
            if (!line.empty()) {
                desc.append(line).append(1, '\n');
                empty_count = 0;
            } else if (++empty_count == 2) {
                break;
            }
        }
    }

    std::cout << "Option #1:\n\n" << option1
              << "\n\nOption #2:\n\n" << option2
              << "\n\nOption #3:\n\n" << option3 << '\n';
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.