Đoạn mã sau sử dụng Python regex trích xuất id email từ chuỗi / văn bản đã cho
Ví dụ
import re s ='[email protected]' result =re.findall('[a-zA-Z0-9]\S*@\S*[a-zA-Z]', s) print result
Đầu ra
Điều này cho kết quả
['[email protected]']
Đoạn mã sau sử dụng Python regex trích xuất id email từ chuỗi / văn bản đã cho
import re s ='[email protected]' result =re.findall('[a-zA-Z0-9]\S*@\S*[a-zA-Z]', s) print result
Điều này cho kết quả
['[email protected]']