本文整理汇总了Python中pattern.Pattern.match方法的典型用法代码示例。如果您正苦于以下问题:Python Pattern.match方法的具体用法?Python Pattern.match怎么用?Python Pattern.match使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pattern.Pattern
的用法示例。
在下文中一共展示了Pattern.match方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from pattern import Pattern [as 别名]
# 或者: from pattern.Pattern import match [as 别名]
class If:
def __init__(self, predicate):
if isinstance(predicate, str):
self.predicate = Pattern(predicate)
else:
self.predicate = predicate
self.predicate_assertion = True
self.deduction = Pattern('')
def is_(self, v):
self.predicate_assertion = v
return self
def then(self, deduction):
if isinstance(deduction, str):
self.deduction = Pattern(deduction)
else:
self.deduction = deduction
return self
def deduct(self, input_):
refs, successful = self.predicate.match(input_)
if self.predicate_assertion and successful:
return self.deduction.evaluate(refs)
else:
raise Paradox
def __str__(self):
return 'if %s then %s' % (self.predicate, self.deduction)