Answers for "extract word from text regex python"

2

extract text regex python

>>> import re

>>> re.findall(r'd{1,5}','gfgfdAAA1234ZZZuijjk')

>>> ['1234']
Posted by: Guest on March-25-2020

Code answers related to "extract word from text regex python"

Python Answers by Framework

Browse Popular Code Answers by Language