Boost regexp - 搜索结果的空终止
boost::regex re;
re = "(\\d+)";
boost::cmatch matches;
if (boost::regex_search("hello 123 world", matches, re))
{
printf("Found %s\n", matches[1]);
}
结果:“找到 123 个世界”。我只想要“123”。这是空终止的问题,还是只是误解了 regex_search 的工作原理?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能像这样将
matches[1]
(sub_match
类型的对象)传递给 printf 。事实上,您不能指望它会给出任何有用的结果,因为 printf 需要一个 char 指针。相反,使用:或者如果您想使用 printf:
您可以使用
matches[1].str()
获取带有结果的 std::string 对象。You can't pass
matches[1]
(an object of typesub_match<T>
) to printf like that. The fact that it gives any useful result at all is something you can't count on, since printf expects a char pointer. Instead use:Or if you want to use printf:
You can get an std::string object with the result using
matches[1].str()
.