(编辑:jimmy 日期: 2024/11/12 浏览:2)
Python 正则表达式匹配数字
电话号码:\d{3}-\d{8}|\d{4}-\d{7}
QQ号:[1-9][0-9]{4,}
中国邮政编码:[1-9]\d{5}("htmlcode">
import re price='25.34-34.55' test=re.compile(r'[1-9]\d*\.\d*|0\.\d*[1-9]|[1-9]\d*').findall(price)[0] test2=re.compile(r'-[1-9]\d*\.\d*|-0\.\d*[1-9]|-[1-9]\d*').findall(price)[0] i=float(test) x=-float(test2) r=(x+i)/2 print r
知识点扩展:python 正则表达式找出字符串中的纯数字
1、简单的做法
> import re > re.findall(r'\d+', 'hello 42 I'm a 32 string 30') ['42', '32', '30']
然而,这种做法使得字符串中非纯数字也会识别
> re.findall(r'\d+', "hello 42 I'm a 32 str12312ing 30") ['42', '32', '12312', '30']
2、识别纯数字
如果只需要用单词边界( 空格,句号,逗号) 分隔的数字,你可以使用 \b
> re.findall(r'\b\d+\b', "hello 42 I'm a 32 str12312ing 30") ['42', '32', '30'] > re.findall(r'\b\d+\b', "hello,42 I'm a 32 str12312ing 30") ['42', '32', '30'] > re.findall(r'\b\d+\b', "hello,42 I'm a 32 str 12312ing 30") ['42', '32', '30']
总结
以上所述是小编给大家介绍的Python 正则表达式匹配数字及字符串中的纯数字,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!