How to extract all the int numbers from a string in Python

3 Answers

0 votes
string = "a3 145 python 3.14 java x6 50 3 c#"

r = [int(s) for s in string.split() if s.isdigit()]

print(r)


'''
run:

[145, 50, 3]

'''

 



answered Dec 26, 2017 by avibootz
0 votes
string = "a3 145 python 3.14 java x6 50 3 c#"

r = [int(s) for s in string.split() if s.isdigit()]

print(r[0])
print(r[1])
print(r[2])


'''
run:

145
50
3

'''

 



answered Dec 26, 2017 by avibootz
0 votes
string = "a3 145 python 3.14 java x6 50 3 c#"

r = [int(s) for s in string.split() if s.isdigit()]

for number in r:
    print(number)


'''
run:

145
50
3

'''

 



answered Dec 26, 2017 by avibootz

Related questions

1 answer 160 views
2 answers 171 views
1 answer 165 views
3 answers 380 views
1 answer 203 views
...