Computer >> Máy Tính >  >> Lập trình >> Python

Làm cách nào để viết một biểu thức chính quy trong Python để khớp nhiều từ ở bất kỳ đâu?


Đoạn mã sau sử dụng Python regex khớp với nhiều từ đã cho trong chuỗi đã cho

Ví dụ

import re
s = "These are roses and lilies and orchids, but not marigolds or .."
r = re.compile(r'\broses\b | \bmarigolds\b | \borchids\b', flags=re.I | re.X)
print r.findall(s)

Đầu ra

Điều này cho kết quả

['roses', 'orchids', 'marigolds']