慕神3407587
2018-08-26 10:21
[]表示的字符集中字符的顺序是按什么排列的?比如【0-9】、【a-z】, ASCii吗? 谢谢
import re
m1=re.match(r'[0-z]*','78erW90Er')
m2=re.match(r'[0-Z]*','78erW90Er')
print m1.group()
print m2.group()
#结果
#78erW90Er
#78
#ASCII是从数字到大写字母再到小写字母的,确实符合ASCII码表
python正则表达式
80575 学习 · 174 问题
相似问题