python清除字符串里非数字字符的方法
程序员文章站
2023-11-25 13:00:10
本文实例讲述了python清除字符串里非数字字符的方法。分享给大家供大家参考。具体如下:
import re
s = "how19 a*re 254y**ou...
本文实例讲述了python清除字符串里非数字字符的方法。分享给大家供大家参考。具体如下:
import re s = "how19 a*re 254y**ou?" # Using regular expressions print re.sub("\D", "", s)
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:
- Python中的map、reduce和filter浅析
- python判断字符串是否纯数字的方法
- Python内置函数之filter map reduce介绍
- Python map和reduce函数用法示例
- Python中的高级函数map/reduce使用实例
- Python中的特殊语法:filter、map、reduce、lambda介绍
- Python中的map()函数和reduce()函数的用法
- Python中map,reduce,filter和sorted函数的使用方法
- Pythont特殊语法filter,map,reduce,apply使用方法
- python用reduce和map把字符串转为数字的方法