const_iteratorを、intおよびstring操作を実行できる型に変換する必要があります。results [1]には、操作する必要のあるregex_searchからのテキストが含まれています。私はすでに実行可能な形式にキャストしようとして数時間を費やしましたが、成功しませんでした...
boost::match_results<std::string::const_iterator> results;
boost::regex ex(pattern, boost::regex::perl);
if(boost::regex_search(line, results, ex))
(results[1] > 10) ? cout << "Fail" : cout << "Pass";
ありがとう、ジョー