How to read text file and Ignore N characters or until first space from start in C++

1 Answer

0 votes
#include <iostream>
#include <fstream>

using std::cout;
using std::endl;
using std::ifstream;

int main()
{
	ifstream ifs("d:\\data.txt");

	if (!ifs) {
		cout << "Error open file" << endl;
		return 1;
	}

	ifs.ignore(5, ' ');
	char ch;
	while (ifs) {
		ifs.get(ch);
		if (ifs)
			cout << ch;
	}
	cout << endl;

	ifs.close();

	return 0;
}


/*
run:

c++ python

*/

 



answered Jul 3, 2018 by avibootz

Related questions

1 answer 164 views
1 answer 175 views
1 answer 172 views
1 answer 205 views
3 answers 267 views
...