Answers for "get all digits from string python"

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
0

extract digits with serten lenth from string python

import re

str = 'We four guys, live at 2nd street of Malibeu 521. I had a cash of $248 in my pocket. I got a ticket with serial number 88796451-52.'

#search using regex
x = re.findall('[0-9]+', str)
print('All Numbers\n',x)

#digits of length N
N=3

def filterNumber(n):
	if(len(n)==N):
		return True
	else:
		return False
		
#filter the list
finalx = list(filter(filterNumber, x))
print('Final List\n',finalx)
Posted by: Guest on December-15-2021

Code answers related to "get all digits from string python"

Python Answers by Framework

Browse Popular Code Answers by Language