码迷,mamicode.com
首页 > 编程语言 > 详细

python(15)提取字符串中的数字

时间:2016-06-01 19:42:51      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:

python 提取一段字符串中去数字

ss = “123ab45”

方法一:filter

filter(str.isdigit, ss)

别处copy的filter的用法:

# one
>>> filter(str.isdigit, ‘123ab45‘)
‘12345‘

#two
def
not_empty(s): return s and s.strip() filter(not_empty, [A, ‘‘, B, None, C, ])
# 结果: [‘A‘, ‘B‘, ‘C‘]

方法二:正则表达式

s = re.findall("\d+",ss)[0]
print s

 

python(15)提取字符串中的数字

标签:

原文地址:http://www.cnblogs.com/lovychen/p/5550670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!