import re
# 从字符串中提取数字
totalCount = '-100,abc2.4-123s,d-1ds-0.234as123.2s1.3bb.24'
count = re.findall('-?\d+.?\d+', totalCount)
print(count)
得到结果:[’-100’, ‘2.4’, ‘-123’, ‘-0.234’, ‘123.2’, ‘1.3’, ‘24’]
注意:无法匹配如.24
或1.
这种格式的数字,如果它们代表0.24
或1.0
,那么需要其他操作。