Thanks to visit codestin.com
Credit goes to www.tutorialspoint.com

Extract Numbers from Text Using Python Regular Expression



If we want to extract all numbers/digits  individually from given text we use the following regex

Example

import re
s = '12345 abcdf 67'
result=re.findall(r'\d', s)
print result

Output

['1', '2', '3', '4', '5', '6', '7']

If we want to extract groups of numbers/digits from given text we use the following regex

Example

import re
s = '12345 abcdf 67'
result=re.findall(r'\d+', s)
print result

Output

['12345', '67']
Updated on: 2020-02-20T07:17:09+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements