私はCでrobots.txtのパーサを書いてい++いただきました!私のCと間違っ++正規表現マッチ
boost::regex exrp("^User-agent:\s*(.*)");
boost:: match_results<string::const_iterator> what;
if(boost::regex_search(robots, what, exrp))
{
string s(what[1].first, what[1].second);
cout<< s;
}
これは*名前のユーザーエージェントと一致する必要がありますが、あなたがそれを望むなら、それはそれは、すべての件のデータ
"data"はすでに複数です。 –