假设我已经创建了一个编译的re:
x = re.compile('^\d+$')
有没有办法从x中提取模式字符串(^\d + $)?
你可以用它来取回它
x.pattern
来自正则表达式对象的Python 文档