Answers for "python get digits from string"

4

python extract all numbers from string re

>>> str = "h3110 23 cat 444.4 rabbit 11 2 dog"
>>> [int(s) for s in str.split() if s.isdigit()]
[23, 11, 2]
Posted by: Guest on October-15-2020
1

python get numbers from string

string = "abc123"
# Method 1
''.join(char for char in string if char.isdigit())

#Method 2
import re
re.sub("[^0-9]", "", string)
Posted by: Guest on December-03-2020

Code answers related to "python get digits from string"

Python Answers by Framework

Browse Popular Code Answers by Language