I am readin a .txt file Line for Line and what I am interested to do is to identify that if the Line do contains any characters as Letters, text, symbols.
Exceptions is things like: '\n' ' ' etc... so "" wont be possible here ?
So I am trying to identify if the line contain any "Real Charaters"/typed characters from the keyboard.
I have started some code and wonder if this is possible to do in the if-statement:
if( Line == ? ) // (If the line do contains "Real Characters" typed from the keyboard)
std::string Line;
ifstream ReadFile("C:\\File1.txt);
while ( getline(ReadFile, Line, '\n')
{
if( Line == ? )
{
//Do Stuff
}
}