int line = 0;
string teststring = " ";
string stringarray[100];
while (codeFile.good())
{
    getline(codeFile, teststring, ' ');
    if(teststring!="" && teststring[0]!='\n' && teststring[0] != 9 && teststring[0] != 10 && teststring[0] != 32 && teststring[0]!=' '
            && teststring!=" " && teststring!="  ")
    {
        stringarray[line]=teststring;        // still stores whitespace :(
        cout << stringarray[line] << endl;
        line++;
    }
}
Hello, I am going through a text file and trying to store each string inside an element of an array but, am having problems with elements storing completely white space.
 
     
    