我想检查以下输入文本文件:
#HEADLINE
#some line of text (comment)
#size of logo
SIZE: 11 6
VALUE: 200
LOGO:
IIGGGGGGGII
IIG------II
IIGGGGGGGII
IIG------II
IIGGGGGGGII
名称(SIZE,VALUE,LOGO)和值之间可能有任意数量的空格
例如:SIZE 11 6
我最初的想法是开始:
std::ifstream infile("Myfile.txt")
if(!infile.is_open())
return ERROR;
std::string str;
while(std::getline(infile, str)
{
// check input
}
非常感谢任何建议......