如何从 Python 中的字符串中获取整数值?

How to get integer values from a string in Python?(如何从 Python 中的字符串中获取整数值?)
本文介绍了如何从 Python 中的字符串中获取整数值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

假设我有一个字符串

string1 = "498results should get" 

现在我只需要从像 498 这样的字符串中获取整数值.在这里我不想使用 list slicing 因为整数值可能会像这些示例一样增加:

Now I need to get only integer values from the string like 498. Here I don't want to use list slicing because the integer values may increase like these examples:

string2 = "49867results should get" 
string3 = "497543results should get" 

所以我只想以完全相同的顺序从字符串中获取整数值.我的意思是像 498,49867,497543 分别来自 string1,string2,string3.

So I want to get only integer values out from the string exactly in the same order. I mean like 498,49867,497543 from string1,string2,string3 respectively.

谁能用一两行告诉我如何做到这一点?

Can anyone let me know how to do this in a one or two lines?

推荐答案

>>> import re
>>> string1 = "498results should get"
>>> int(re.search(r'd+', string1).group())
498

如果字符串中有多个整数:

If there are multiple integers in the string:

>>> map(int, re.findall(r'd+', string1))
[498]

这篇关于如何从 Python 中的字符串中获取整数值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

build conda package from local python package(从本地 python 包构建 conda 包)
How can I see all packages that depend on a certain package with PIP?(如何使用 PIP 查看依赖于某个包的所有包?)
How to organize multiple python files into a single module without it behaving like a package?(如何将多个 python 文件组织到一个模块中而不像一个包一样?)
Check if requirements are up to date(检查要求是否是最新的)
How to upload new versions of project to PyPI with twine?(如何使用 twine 将新版本的项目上传到 PyPI?)
Why #egg=foo when pip-installing from git repo(为什么从 git repo 进行 pip 安装时 #egg=foo)