正则匹配——python用一个正则表达式从字符串中提取数字(包括整数、小数、正负数)

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’]

注意:无法匹配如.241.这种格式的数字,如果它们代表0.241.0,那么需要其他操作。

上一篇:Mysql之读写分离架构-Atlas


下一篇:golang 识别redis key在哪个codis的slot上