Python3中字符串中的数字提取方法

Posted TianchiLiu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3中字符串中的数字提取方法相关的知识,希望对你有一定的参考价值。

Python3中字符串中的数字提取方法

  • re.sub(pattern, repl, string, count=0, flags=0)
1 totalCount = '100abc'
2 totalCount = re.sub("D", "", totalCount)
  • str.split(sep=None, maxsplit=-1)
>>> import string
>>> a = "32 个答案"
>>> b = a.split()[0]
>>> print(b)
>>> type(b)
<class 'str'>
>>> c = '1,2,3'
>>> c.split(',')
['1', '2', '3']
>>> c.split(',')[0]
'1'
>>> c.split(',')[1]
'2'
>>>

split()的第一个参数是分隔符,如果什么都不填就是默认是以空格来分隔

以上是关于Python3中字符串中的数字提取方法的主要内容,如果未能解决你的问题,请参考以下文章

php提取字符串中的数字

python中如何从字符串中提取数字?

python 提取字符串中的数字并且复制下来

Python3 批量提取视频中的音频

Python3 批量提取视频中的音频

Python3 批量提取视频中的音频