1. 程式人生 > >Python 使用正則表達式匹配電子郵箱

Python 使用正則表達式匹配電子郵箱

pil class mpi reg port 匹配 pan dal clas

如下:

In [1]: import re

In [2]: email = "[email protected]"

In [3]: regular = re.compile(r[0-9a-zA-Z.]+@[0-9a-zA-Z.]+?com)

In [4]: re.findall(regular, email)
Out[4]: [[email protected]]

Python 使用正則表達式匹配電子郵箱