标签: python regex types
可能重复: Type of compiled regex object in python
通常我会isinstance(obj, ThePatternType),但我看不懂如何获得ThePatternType。
isinstance(obj, ThePatternType)
ThePatternType
当我创建已编译的正则表达式模式的实例时,类型给出:
type(pattern) <type '_sre.SRE_Pattern'>
但由于某种原因,我无法做from _sre import SRE_Pattern
from _sre import SRE_Pattern
我意识到我能做到,ThePatternType = type(re.compile(r'.')),但这似乎错了!
ThePatternType = type(re.compile(r'.'))