Python 面试题

编写一个 Reg 表达式,使用 Python Reg 表达式模块 Re 确认电子邮件 ID?

点我看答案

Python 有一个正则表达式模块re

编写可以检查 .com.co.in 子域的电子邮件 ID 的 re 表达式。

import re

print(re.search(r"[0-9a-zA-Z.]+@[a-zA-Z]+\.(com|co\.in)$","liushi.live@outlook.com"))
© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""