I\'m taking a part in a challenge, and just to cut to the point, in one of places in my program I need to convert string to an integer. I\'ve tried boost::lexical_cast but u
how about using stoi(). I am sure that it must be fast enough to satisfy your needs.