让我们考虑变量pattern = re.compile(r"\w+")
。有没有办法检索用于定义r"\w+"
的字符串pattern
?
答案 0 :(得分:1)
是 - pattern.pattern:
pattern = re.compile(r"\w+")
>>> pattern.pattern
'\\w+'
答案 1 :(得分:0)
嗯,if we look at the docs,我们看到regex objects have the attribute:
regex
。的图案强>编译RE对象的模式字符串。