python-组的高优先级

import re
print(re.findall('(abc)+','abcabcabc'))
print(re.findall('(?:abc)+','abcabcabc'))
print(re.findall('abc+','abcabcabc'))

 

posted @ 2018-05-26 21:32  benchdog  阅读(153)  评论(0编辑  收藏  举报