我的c++怎么了?正则表达式匹配

发布于 2024-10-18 21:09:55 字数 430 浏览 2 评论 0原文

我正在用 c++ 编写一个 robots.txt 解析器,

 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;
                  }

这应该与名称为 * 的用户代理匹配,但它返回所有数据

i am writing an robots.txt parser in 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;
                  }

this should match the useragent with name * but it it returns all datas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怎言笑 2024-10-25 21:09:55

如果您不使用 c++0x 原始字符串,则需要双反斜杠 '\\'。

You need the double backslash '\\' if you don't use c++0x raw strings.

涫野音 2024-10-25 21:09:55

如果您希望它仅匹配 User-agent: * 而不是(例如)User-agent: webcrawler 您需要

"^User-agent:\\s*\\*"

* 字符有特殊含义,所以必须用\转义。代码中的 (.*) 匹配零次或多次出现的任何字符并捕获匹配项。

编辑:您还需要按照橡胶靴指出的那样转义反斜杠。

If you want it to match only User-agent: * and not also (e.g.) User-agent: webcrawler you need

"^User-agent:\\s*\\*"

The * character has a special meaning, so must be escaped with \. The (.*) in your code matches zero or more occurrences of any character and captures the match.

Edit: You also need to escape the backslashes as pointed out by rubber boots.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文