我正在使用下面的代码来读取文件,搜索给定的字符串并显示该行。但我想阅读immediate next line
我在文件的字符串搜索中找到的内容。我可以增加行号以获取下一行,但我需要getline
在文件上再次使用吗?
这是我的代码:
#include <string>
#include <iostream>
#include <fstream>
int main()
{
std::ifstream file( "data.txt" ) ;
std::string search_str = "Man" ;
std::string line ;
int line_number = 0 ;
while( std::getline( file, line ) )
{
++line_number ;
if( line.find(search_str) != std::string::npos )
{
std::cout << "line " << line_number << ": " << line << '\n' ;
std::cout << ++line_number; // read the next line too
}
}
return (0);
}
这是我的文件的内容:
Stu
Phil and Doug
Jason
Bourne or X
Stephen
Hawlkings or Jonathan
Major
League or Justice
Man
Super or Bat