python正则表达式从字符串中提取小数和整数

import re
string="A1.45,b5,6.45,8.82"
print(re.findall(r"\d+\.?\d*",string))

结果:

你可能感兴趣的:(爬虫,正则表达式,python爬虫,字符串处理)