I am trying to open up a text file in C++ and read it line by line until I find a specific string, however the data is also split into different parts...
The text file looks like this:
entry_one:true,true,false;
entry_two:true,false,false;
entry_three:false,false,false;
entry_four:true,false,true;
I basically need to read the text file into memory, go through each line until I find the specific "entry_..." I am looking for, and then I need to split the boolean value data into variables.
So far I thought on this:
ifstream stream;
string line;
stream.open(filepath);
if (stream)
{
size_t sizepos;
while (stream.good()){
getline(stream, line);
}
}
The above code will at least open up the text file into memory so it can be read, and then getline can be used to read the current line...
But how will I check if it is the correct entry I need, and then afterwards split the true/false into variables?
E.g. find entry two in the text file and for each true/false put it into the following variables
bool bEntryTwo1 = false;
bool bEntryTwo2 = false;
bool bEntryTwo3 = false;
I'm confused and stuck, does anyone know what they are doing to help me with this? thankss! :)
For Boolean values, I will go with
std::vector<bool>
rather than creating separate Boolean values. As a result, this is my approach for your question.for this entry
entry_four:true,false,true;
, we have this outputNote: I've ignored some details in the code for the sake of simplicity. For example, you need to double check whether the file is opened successfully. I will leave extra precautions to you.