From 3ce3338795b64c97514ef5aeaa582ce1097fcc82 Mon Sep 17 00:00:00 2001 From: Manuel Vergara Date: Thu, 11 Jan 2024 20:25:12 +0100 Subject: [PATCH] Update Python Ofensivo - validador de correo con regex --- .../00_ejercicios/09_validar_correo_regex.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 python-ofensivo/00_ejercicios/09_validar_correo_regex.py 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"))