【发布时间】:2009-11-11 02:50:45
【问题描述】:
是否有用于 boost::regex 的 DOTALL 匹配标志?文档显示:
static const match_flag_type match_not_dot_newline;
static const match_flag_type match_not_dot_null;
但没有提到常规的 DOTALL。
我正在尝试匹配写为
的 python 正则表达式re.compile(r'<a(.*?)</a>', re.DOTALL)
【问题讨论】:
标签: c++ regex boost-regex