python(15)提取字符串中的数字
python 提取⼀段字符串中去数字
ss = “123ab45”
⽅法⼀:filter
filter() 函数⽤于过滤序列,过滤掉不符合条件的元素,返回由符合条件元素组成的新列表。
该接收两个参数,第⼀个为函数,第⼆个为序列,序列的每个元素作为参数传递给函数进⾏判,然后返回 True 或 False,最后将返回 True 的元素放到新列表中。
str.filter:如果字符串只包含数字则返回 True 否则返回 False。
filter(str.isdigit, ss)
python2 和 python 3 ⽤起来有差别
# one (python2 中)
>>> filter(str.isdigit, '123ab45')
'12345'
python正则表达式不包含#one1 (python3 中)
>>> "".join(list(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']
# 列表中的每个元素都会过⼀遍 pattern,返回的还是列表
⽅法⼆:正则表达式
s = re.findall("\d+",ss)[0]
print s

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。