Boost :: Regex DOTALL标志

时间:2009-11-11 02:50:46

标签: c++ regex boost-regex

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)

1 个答案:

答案 0 :(得分:1)

我认为您要找的是mod_s syntax_option_type。您还可以使用内联修饰符(?s)