Đoạn mã sau xác thực bất kỳ id email nhất định nào bằng cách sử dụng regex trong Python
Ví dụ
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()
Đầu ra
Điều này cho kết quả
[email protected]