Update Python Ofensivo - validador de correo con regex

This commit is contained in:
Manuel Vergara 2024-01-11 20:25:12 +01:00
parent 818ec91771
commit 3ce3338795

View File

@ -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"))