Answers for "extract all integers from the given string python"

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 "extract all integers from the given string python"

Python Answers by Framework

Browse Popular Code Answers by Language