โค้ดต่อไปนี้โดยใช้ Python regex จะแยก id อีเมลจากสตริง/ข้อความที่กำหนด
ตัวอย่าง
import re s ='[email protected]' result =re.findall('[a-zA-Z0-9]\S*@\S*[a-zA-Z]', s) print result
ผลลัพธ์
สิ่งนี้ให้ผลลัพธ์
['[email protected]']
โค้ดต่อไปนี้โดยใช้ Python regex จะแยก id อีเมลจากสตริง/ข้อความที่กำหนด
import re s ='[email protected]' result =re.findall('[a-zA-Z0-9]\S*@\S*[a-zA-Z]', s) print result
สิ่งนี้ให้ผลลัพธ์
['[email protected]']