Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

is there find_all method in re or regex module in python?

>>> text = "He was carefully disguised but captured quickly by police."
>>> re.findall(r"w+ly", text)
['carefully', 'quickly']
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #method #regex #module
ADD COMMENT
Topic
Name
3+9 =