如何使用python从字符串中获取数字

时间:2019-02-23 03:36:06

标签: python python-3.x

我想从字符串中获取数字

示例:

a = '22,123 games'

结果:

result = 22123

1 个答案:

答案 0 :(得分:1)

首先,您需要找到数字在哪里。 我假设它在第一个空格之前,所以

number = a[0 : a.find(' ')]

然后您必须删除逗号:

noCommas = number.replace(',', '')

然后转换为int:

res = int(noCommas)