#include <iostream>
#include <fstream>
#include <cstdio>
using namespace std;
/*
The code below should read test string then open file and find similar
string in the text file (that contains multiple lines) by reading first
8 chars to make sure code is on the correct line then read next 4 chars
which could be different every time.
Code works fine for first 8 chars but last 4 chars it never reads
*/
void test_value2()
{
char charRead;
unsigned char test2String[65] = "12345f67895f";
unsigned char comparetest2String[65] = { 0 };
unsigned int counter1 = 0, countChars = 0, countTestChars = 0, countChars2 = 0;
// Read from stdin instead of from a file.
std::istream& testResultsFile = std::cin;
// std::fstream testResultsFile;
// testResultsFile.open("socc.in", ios::in);
do
{
counter1++; //count number of chars in test2String
} while (test2String[counter1] != '\0');
cout << "number of chars in test2String " << counter1 << endl;
while (!testResultsFile.eof())
{
testResultsFile.get(charRead); // Read char from the file
countChars++; // count total character read for future comparison with countTestChars
if (countTestChars == 8)
{
countChars2 = countChars;
}
if ((charRead == test2String[countTestChars]) && (countTestChars < 9))
{
comparetest2String[countTestChars] = charRead;
countTestChars++;
}
if ((countTestChars > 8) && (countTestChars < counter1)) // if at least first 8 chars matched, keep reading string
{
cout << "trying to read again" << endl;
comparetest2String[countTestChars] = charRead;
countTestChars++;
if (countTestChars == counter1)
{
cout << "done " << endl;
cout << comparetest2String << endl;
break;
}
}
}
}
int main()
{
test_value2();
}