รหัสต่อไปนี้ตรวจสอบรหัสอีเมลที่ระบุโดยใช้ regex ใน Python
ตัวอย่าง
import re s = '[email protected]' match = re.search(r'\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b', s, re.I) print match.group()
ผลลัพธ์
สิ่งนี้ให้ผลลัพธ์
[email protected]
รหัสต่อไปนี้ตรวจสอบรหัสอีเมลที่ระบุโดยใช้ regex ใน Python
import re s = '[email protected]' match = re.search(r'\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b', s, re.I) print match.group()
สิ่งนี้ให้ผลลัพธ์
[email protected]