tr/正则表达式 c++库 - 正则表达式模式的定义

发布于 2024-10-12 04:13:07 字数 164 浏览 2 评论 0原文

当我使用 tr1/regex 库时,我应该如何定义正则表达式模式?

#include <tr1/regex>

const regex pattern("[^-]-[^-]");

不起作用...编译时出现错误:“regex”未命名类型

How should i define the regex pattern, when i use the tr1/regex library?

#include <tr1/regex>

const regex pattern("[^-]-[^-]");

is not working... When compiling i get error: ‘regex’ does not name a type

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

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

发布评论

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

评论(1

regex 位于 tr1 命名空间中,因此您需要声明您正在使用 tr1 或指定 regex 是在 tr1 命名空间中:

using namespace tr1;

const tr1::regex pattern("[^-]-[^-]");

regex is in the tr1 namespace so you either need to declare that you are using tr1 or specify that regex is in the tr1 namespace:

using namespace tr1;

or

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