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?