标签: 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。
我正在尝试匹配写为
re.compile(r'<a(.*?)</a>', re.DOTALL)
答案 0 :(得分:1)
我认为您要找的是mod_s syntax_option_type。您还可以使用内联修饰符(?s)。
mod_s
(?s)