如何从Python中的字符串中获取整数值? [英] How to get integer values from a string in Python?

查看:685
本文介绍了如何从Python中的字符串中获取整数值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个字符串

string1 = "498results should get" 

现在我只需从字符串中获取整数值,如 498 。在这里,我不想使用列表切片,因为整数值可能会像这些示例一样增加:

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中的字符串中获取整数值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆