0

包括

#include <fstream>
#include <string>
#include<string>
#include<boost/algorithm/string.hpp>
#include<boost/regex.hpp>
#include <boost/algorithm/string/trim.hpp>
using namespace std;
using namespace boost;


int main() {
    string robotsfile="User-Agent: *"
            "Disallow: /";

    regex exrp( "^Disallow:(.*)$");

            match_results<string::const_iterator> what;

            if( regex_search( robotsfile, what, exrp ) )

            {

                string s( what[1].first, what[1].second );


                cout<< s;
            }

    return 0;
}

我需要/Disallow: /我的正则表达式有什么问题中获取不允许的路径?

4

1 回答 1

5
string robotsfile = "User-Agent: *"
    "Disallow: /";

上面的字符串文字被合并到 "User-Agent: *Disallow: /" 中,并且没有你想象的换行符。由于您的正则表达式声明字符串必须以“Disallow”单词开头,因此它不匹配。逻辑上正确的代码是这样的:

string robotsfile = "User-Agent: *\n"
    "Disallow: /";

或者

string robotsfile = "User-Agent: *\nDisallow: /";
于 2010-09-20T12:21:57.777 回答