标签: python regex
假设我创建了一个编译的re:
x = re.compile('^\d+$')
有没有办法从x?
答案 0 :(得分:27)
你可以用
x.pattern
来自Python documentation on Regular Expression Objects