Python3:re.complie用法

import re
pattern = re.compile('[a-zA-Z]')
result = pattern.findall('as3SiOPdj#@23awe')
print (result)

结果:

['a', 's', 'S', 'i', 'O', 'P', 'd', 'j', 'a', 'w', 'e']

你可能感兴趣的:(正则表达式,python)