Answers for "how to extract integer from a string in python"

3

how to remove integer from string in python

>>> s = '12abcd405'
>>> result = ''.join([i for i in s if not i.isdigit()])
>>> result
'abcd'
Posted by: Guest on February-20-2020
0

how to extract integers from string python

>>> txt = "h3110 23 cat 444.4 rabbit 11 2 dog"
>>> [int(s) for s in txt.split() if s.isdigit()]
[23, 11, 2]
Posted by: Guest on June-05-2021

Code answers related to "how to extract integer from a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language