开始学Python了!- >>> import re
- >>> a
- 'AB[rb][qb][pc][oc][nd][ne][nf][og][oh][qh][rg][sf][ri][se][sb]'
- >>> b=re.findall('[a-z]{2}',a)
- >>> b
- ['rb', 'qb', 'pc', 'oc', 'nd', 'ne', 'nf', 'og', 'oh', 'qh', 'rg', 'sf', 'ri', 'se', 'sb']
- >>> ''.join(b)
- 'rbqbpcocndnenfogohqhrgsfrisesb'
- >>>
复制代码
|