diff --git a/python-ofensivo/00_ejercicios/09_validar_correo_regex.py b/python-ofensivo/00_ejercicios/09_validar_correo_regex.py new file mode 100644 index 0000000..c6454e8 --- /dev/null +++ b/python-ofensivo/00_ejercicios/09_validar_correo_regex.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 +""" +Validar correo con regex +""" + +import re + +def validar_correo(correo): + + patron = r"\b[A-Za-z0-9._+-]+@[A-Za-z0-9]+\.[A-Za-z]{2,}\b" + + if re.findall(patron, correo): + return True + + return False + +print(validar_correo("invent@hacko.io"))