Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะเขียนนิพจน์ทั่วไปของ Python เพื่อจับคู่คำหลายคำที่ใดก็ได้ได้อย่างไร


โค้ดต่อไปนี้ที่ใช้ Python regex จะจับคู่หลายคำที่ระบุในสตริงที่กำหนด

ตัวอย่าง

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)

ผลลัพธ์

ให้ผลลัพธ์

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