tr/正则表达式 c++库 - 正则表达式模式的定义
当我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
regex
位于tr1
命名空间中,因此您需要声明您正在使用tr1
或指定regex
是在tr1
命名空间中:或
regex
is in thetr1
namespace so you either need to declare that you are usingtr1
or specify thatregex
is in thetr1
namespace:or