Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,941 questions

51,879 answers

573 users

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 141 views
2 answers 148 views
1 answer 148 views
3 answers 341 views
1 answer 169 views
...