О, я бы на самом деле рекомендовал Boost Spirit (Qi), см. Ниже пример для примера
#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
using namespace std;
int main ()
{
ifstream myfile ("example.txt");
std::string line;
while ( std::getline(myfile, line) )
{
std::istringstream iss(line.substr(0,3));
int i;
if (!(iss >> i))
{
i = -1;
// TODO handle error
}
std::string tail = line.size()<4? "" : line.substr(4);
std::cout << "int: " << i << ", tail: " << tail << std::endl;
}
return 0;
}
Просто для удовольствия, вот более гибкое решение на основе Boost:
#include <boost/spirit/include/qi.hpp>
#include <fstream>
#include <iostream>
using namespace std;
int main ()
{
ifstream myfile ("example.txt");
std::string line;
while ( std::getline(myfile, line) )
{
using namespace boost::spirit::qi;
std::string::iterator b(line.begin()), e(line.end());
int i = -1; std::string tail;
if (phrase_parse(b, e, int_ >> *char_, space, i, tail))
std::cout << "int: " << i << ", tail: " << tail << std::endl;
// else // TODO handle error
}
return 0;
}
Если вы действительно должны иметь первые три символа в виде целых чисел, я бы сейчас остановился на чистом решении STL