re.compile(pattern,flags = 0)
将正则表达式 pattern 编译为正则表达式对象,可用于使用其 match() 和search() 方法进行匹配。
顺序:
prog = re.compile(pattern)
result = prog.match(string)
等价于:
result = re.match(pattern, string)
但是当单个程序中的表达式被多次使用时,使用 re.compile() 和保存生成的正则表达式对象进行重用会更有效率。
注意传递给re.compile()和模块级匹配函数的最新模式的编译版本被缓存,因此一次只使用少数正则表达式的程序不必担心编译正则表达式。
参开资料: