热门标签
更多>
搜索结果
查询Tags标签: 0.234,共有 2条记录-
正则匹配——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’] 注意:无法匹配如.24或1.这…
2021/10/17 9:09:26 人评论 次浏览 -
正则匹配——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’] 注意:无法匹配如.24或1.这…
2021/10/17 9:09:26 人评论 次浏览