python+re正则表达式匹配整数和小数

  • Post author:
  • Post category:python




匹配整数(位数也可以指定)



匹配10位数字

import re
res = re.findall(r'\d{10}',"hasdh8523697400ffsfsd")
print(res)

在这里插入图片描述



匹配小数

import re
res = re.findall(



版权声明:本文为weixin_42636075原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。