Update Python Ofensivo - validador de correo con regex
This commit is contained in:
parent
818ec91771
commit
3ce3338795
17
python-ofensivo/00_ejercicios/09_validar_correo_regex.py
Normal file
17
python-ofensivo/00_ejercicios/09_validar_correo_regex.py
Normal 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"))
|
Loading…
Reference in New Issue
Block a user