Boost::regex_iterator 构造函数失败,但 make_regex_iterator 函数成功

发布于 2024-11-15 14:11:53 字数 469 浏览 0 评论 0原文

std::string line;

这会抛出 std::runtime_error What(): Memory exed:

regex_it =  boost::sregex_iterator(line.begin(), line.end(), re);

这工作正常:

regex_it = boost::make_regex_iterator(line, re);

有谁知道是什么导致了性能差异? boost::regex lib 在 Linux 上以默认非递归模式编译。

编辑: 还尝试了

regex_it = boost::cregex_iterator(line.data(), line.data()+line.size(), re);

同样的问题。

std::string line;

This throws std::runtime_error what(): Memory exhausted:

regex_it =  boost::sregex_iterator(line.begin(), line.end(), re);

This works fine:

regex_it = boost::make_regex_iterator(line, re);

Does anyone know what is causing the difference in performance? The boost::regex lib is compiled on Linux in default non-recursive mode.

EDIT:
Also tried

regex_it = boost::cregex_iterator(line.data(), line.data()+line.size(), re);

same problem.

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

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

发布评论

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

评论(1

≈。彩虹 2024-11-22 14:11:53

尝试使用 regex_iterator 而不是 regex_iterator。 (此外,您调用 make_regex_iterator 的方式在很大程度上不必要地冗长。)

假设 linestd::string,请尝试这个:

regex_it = boost::make_regex_iterator(line.c_str(), re);

或者这个:

regex_it = boost::cregex_iterator(line.data(), line.data() + line.size(), re);

Try working with a regex_iterator<char const*> rather than a regex_iterator<std::string::const_iterator>. (Also, the way you're calling make_regex_iterator is unnecessarily verbose by a large measure.)

Assuming line is a std::string, try this:

regex_it = boost::make_regex_iterator(line.c_str(), re);

or this:

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