本文整理汇总了Python中pyparsing.Regex.runTests方法的典型用法代码示例。如果您正苦于以下问题:Python Regex.runTests方法的具体用法?Python Regex.runTests怎么用?Python Regex.runTests使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyparsing.Regex
的用法示例。
在下文中一共展示了Regex.runTests方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Regex
# 需要导入模块: from pyparsing import Regex [as 别名]
# 或者: from pyparsing.Regex import runTests [as 别名]
# Spanish
4.294.967.295,000
# Swedish
4 294 967 295,000
# GB-English
4,294,967,295.000
# US-English
4,294,967,295.000
# Thai
4,294,967,295.000
"""
from pyparsing import Regex
comma_decimal = Regex(r'\d{1,2}(([ .])\d\d\d(\2\d\d\d)*)?,\d*')
comma_decimal.setParseAction(lambda t: float(t[0].replace(' ','').replace('.','').replace(',','.')))
dot_decimal = Regex(r'\d{1,2}(([ ,])\d\d\d(\2\d\d\d)*)?\.\d*')
dot_decimal.setParseAction(lambda t: float(t[0].replace(' ','').replace(',','')))
decimal = comma_decimal ^ dot_decimal
decimal.runTests(tests, parseAll=True)
grouped_integer = Regex(r'\d{1,2}(([ .,])\d\d\d(\2\d\d\d)*)?')
grouped_integer.setParseAction(lambda t: int(t[0].replace(' ','').replace(',','').replace('.','')))
grouped_integer.runTests(tests, parseAll=False)