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)

最佳答案

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

10-08 02:36