Ejemplo 1: extraer la dirección de correo electrónico usando una expresión en django
import re
s = 'Hello from [email protected] to [email protected] about the meeting @2PM'
# S matches any non-whitespace character
# @ for as in the Email
# + for Repeats a character one or more times
lst = re.findall('[email protected]S+', s)
print(lst)
#['[email protected]', '[email protected]']
Ejemplo 2: python – regexp para encontrar parte de una dirección de correo electrónico
# Visit: https://regexr.com/
# and look at the Menu/Cheatsheet
import re
# Extract part of an email address
email = '[email protected]'
# Option 1
expr = '[a-z]+'
match = re.findall(expr, email)
name = match[0]
domain = f'{match[1]}.{match[2]}'
# Option 2
parts = email.split('@')
Ejemplo 3: buscar la dirección de correo electrónico pytho
import re
line = "should we use regex more often? let me know at [email protected]"
match = re.search(r'[w.-][email protected][w.-]+', line)
match.group(0)
'[email protected]'
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)