本文整理汇总了Python中pyparsing.CaselessKeyword方法的典型用法代码示例。如果您正苦于以下问题:Python pyparsing.CaselessKeyword方法的具体用法?Python pyparsing.CaselessKeyword怎么用?Python pyparsing.CaselessKeyword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyparsing
的用法示例。
在下文中一共展示了pyparsing.CaselessKeyword方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: import pyparsing [as 别名]
# 或者: from pyparsing import CaselessKeyword [as 别名]
def __init__(self, name, symbols, implicit=False):
symbols_ = [Literal(s) if len(s) == 1 else CaselessKeyword(s) for s in symbols]
super(Operator, self).__init__(concatenate(symbols_, operator='OR'))
self.name = name
self.implicit = implicit
示例2: __init__
# 需要导入模块: import pyparsing [as 别名]
# 或者: from pyparsing import CaselessKeyword [as 别名]
def __init__(self, keyword_name, possible_values, separator=':', parse_method=None, allow_other_values=True):
_values = concatenate(possible_values, operator="LONGEST_OR", class_to_embed_elem=CaselessKeyword)
if allow_other_values:
_values ^= SimpleWord()
super(KeywordTerm, self).__init__(CaselessKeyword(keyword_name) + Literal(separator) + _values)
self.name = keyword_name
self.values = possible_values
if parse_method:
self.setParseAction(parse_method)
示例3: make_integer_word_expr
# 需要导入模块: import pyparsing [as 别名]
# 或者: from pyparsing import CaselessKeyword [as 别名]
def make_integer_word_expr(int_name, int_value):
return pp.CaselessKeyword(int_name).addParseAction(pp.replaceWith(int_value))