📜  python 的 re 或 regex 模块中是否有 find_all 方法? - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:40.257000             🧑  作者: Mango

代码示例1
>>> text = "He was carefully disguised but captured quickly by police."
>>> re.findall(r"\w+ly", text)
['carefully', 'quickly']