Answers for "extract email address using expression in django"

0

extract email address using expression in 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('\S+@\S+', s)
print(lst)
#['[email protected]', '[email protected]']
Posted by: Guest on November-19-2020
0

find email address pytho

import re
line = "should we use regex more often? let me know at  [email protected]"
match = re.search(r'[\w\.-]+@[\w\.-]+', line)
match.group(0)
'[email protected]'
Posted by: Guest on April-16-2020

Code answers related to "extract email address using expression in django"

Python Answers by Framework

Browse Popular Code Answers by Language