我有一个小问题将一些 python 代码传输到 C++ 我有一个格式如下的文件:
============================== There are 0 element
============================== There are 62 element
1VTZ0 13 196 196 13 196 196 184 2520 2BUKA 1 1VTZ0 1 195
1VTZ1 13 196 196 13 196 196 184 2520 2BUKA 1 1VTZ1 1 195
1VTZ2 13 196 196 13 196 196 184 2350 2BUKA 1 1VTZ2 1 195
1VTZ3 13 196 196 13 196 196 184 2470 2BUKA 1 1VTZ3 1 195
1VTZ4 13 196 196 13 196 196 184 2560 2BUKA 1 1VTZ4 1 195
1VTZ5 13 196 196 13 196 196 184 2340 2BUKA 1 1VTZ5 1 195
1VTZ6 13 196 196 13 196 196 184 3320 2BUKA 1 1VTZ6 1 195
1VTZ7 13 196 196 13 196 196 184 2820 2BUKA 1 1VTZ7 1 195
1VTZe 13 196 196 13 196 196 184 2140 2BUKA 1 1VTZe 1 195
我想要做的是跳过这条线===================== There are 0 element
。在我原来的 python 代码中,我只需要使用 if 条件:
if (not "=====" in line2) and (len(line2)>30):
我在 C++ 中使用了类似的 if 条件,但仍然无法摆脱“元素”行,我的 C++ 代码如下:
unsigned pos1, pos2;
string needle1="element"
string needle2="====="
Infile.open(filename.c_str(), ios::in);
while (!Infile.eof())
{
if(line==" ")
{
cout<<"end of the file" <<endl;
break;
}
getline(Infile, line);
pos1=line.find(needle1);
if (pos1!=string::npos&& pos2!=string::npos && (line.length()> 40))
{
...........
}
谢谢!