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)
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)