2016-11-09 Python 强大的模式匹配 一些很 sb 的正则需求, 对子模式要求苛刻不同情况的子模式顺序不同这就要用到命名的子模式了 123456789import reregex = re.match(r'(?P<first>\d+)qwe(?P<last>\d+)', '123qwe321')print(regex.group(1))print(regex.group('first'))print(regex.group(2))print(regex.group('last')) 12345678C:\Python34\python.exe E:/python/tmp.py123123321321Process finished with exit code 0 Newer Git 强大的二分 debug 功能 - git bisect Older PHPUnit 学习乱记